1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/swaps/smart-transaction-status/canceled-icon.test.js

12 lines
332 B
JavaScript
Raw Normal View History

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();
});
});