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