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/arrow-icon.test.js

12 lines
317 B
JavaScript

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