mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
32 lines
812 B
JavaScript
32 lines
812 B
JavaScript
|
import React from 'react';
|
||
|
import configureMockStore from 'redux-mock-store';
|
||
|
|
||
|
import {
|
||
|
renderWithProvider,
|
||
|
createSwapsMockStore,
|
||
|
} from '../../../../../test/jest';
|
||
|
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();
|
||
|
});
|
||
|
});
|