blob: c6ddb1894d186494a83de165b63275900e955d55 (
plain)
1
2
3
4
5
6
7
8
9
|
import { render } from '../../../../tests/utils';
import MagnifyingGlass from './magnifying-glass';
describe('MagnifyingGlass', () => {
it('renders a magnifying glass icon', () => {
const { container } = render(<MagnifyingGlass />);
expect(container).toBeDefined();
});
});
|