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