mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
12 lines
317 B
JavaScript
12 lines
317 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
import { renderWithProvider } from '../../../../test/jest';
|
||
|
import TimerIcon from './timer-icon';
|
||
|
|
||
|
describe('TimerIcon', () => {
|
||
|
it('renders the TimerIcon component', () => {
|
||
|
const { container } = renderWithProvider(<TimerIcon />);
|
||
|
expect(container).toMatchSnapshot();
|
||
|
});
|
||
|
});
|