mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 22:24:27 +01:00
ffbd8e2c2f
12 lines
343 B
JavaScript
12 lines
343 B
JavaScript
import React from 'react';
|
|||
|
|||
import { renderWithProvider } from '../../../../../test/jest';
|
|||
import QuotesTimeoutIcon from './quotes-timeout-icon';
|
|||
|
|||
describe('QuotesTimeoutIcon', () => {
|
|||
it('renders the component', () => {
|
|||
const { container } = renderWithProvider(<QuotesTimeoutIcon />);
|
|||
expect(container).toMatchSnapshot();
|
|||
});
|
|||
});
|