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