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