summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/magnifying-glass.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-01 11:49:59 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-01 11:49:59 +0200
commit3dba396791b37c4ae4dbdaf8e553ed636bc2ecc8 (patch)
tree7a7e624164961fe27197b66b948e399133fc81e5 /src/components/atoms/icons/magnifying-glass.test.tsx
parent9b31e81c8d45eaf0dc6971655dc08b0d0a1cbe56 (diff)
chore: add a magnifying glass icon component
Diffstat (limited to 'src/components/atoms/icons/magnifying-glass.test.tsx')
-rw-r--r--src/components/atoms/icons/magnifying-glass.test.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/atoms/icons/magnifying-glass.test.tsx b/src/components/atoms/icons/magnifying-glass.test.tsx
new file mode 100644
index 0000000..8e788f7
--- /dev/null
+++ b/src/components/atoms/icons/magnifying-glass.test.tsx
@@ -0,0 +1,9 @@
+import { render } from '@test-utils';
+import MagnifyingGlass from './magnifying-glass';
+
+describe('MagnifyingGlass', () => {
+ it('renders a magnifying glass icon', () => {
+ const { container } = render(<MagnifyingGlass />);
+ expect(container).toBeDefined();
+ });
+});