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