1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/swaps/smart-transaction-status/timer-icon.test.js

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();
});
});