1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
2021-04-28 14:53:59 -05:00

12 lines
332 B
JavaScript

import React from 'react';
import { renderWithProvider } from '../../../../test/jest';
import SwapFailureIcon from './swap-failure-icon';
describe('SwapFailureIcon', () => {
it('renders the component', () => {
const { container } = renderWithProvider(<SwapFailureIcon />);
expect(container).toMatchSnapshot();
});
});