You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
809 B
32 lines
809 B
4 years ago
|
import React from 'react';
|
||
|
import configureMockStore from 'redux-mock-store';
|
||
|
|
||
|
import {
|
||
|
renderWithProvider,
|
||
|
createSwapsMockStore,
|
||
4 years ago
|
} from '../../../../test/jest';
|
||
4 years ago
|
import CountdownTimer from '.';
|
||
|
|
||
|
const createProps = (customProps = {}) => {
|
||
|
return {
|
||
|
timeStarted: 1,
|
||
|
timeOnly: true,
|
||
|
timerBase: 5,
|
||
|
warningTime: '0:30',
|
||
|
labelKey: 'swapNewQuoteIn',
|
||
|
infoTooltipLabelKey: 'swapQuotesAreRefreshed',
|
||
|
...customProps,
|
||
|
};
|
||
|
};
|
||
|
|
||
|
describe('CountdownTimer', () => {
|
||
|
it('renders the component with initial props', () => {
|
||
|
const store = configureMockStore()(createSwapsMockStore());
|
||
|
const { getByTestId } = renderWithProvider(
|
||
|
<CountdownTimer {...createProps()} />,
|
||
|
store,
|
||
|
);
|
||
|
expect(getByTestId('countdown-timer__timer-container')).toBeInTheDocument();
|
||
|
});
|
||
|
});
|