summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/cog.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/cog.test.tsx')
-rw-r--r--src/components/atoms/icons/cog.test.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/atoms/icons/cog.test.tsx b/src/components/atoms/icons/cog.test.tsx
new file mode 100644
index 0000000..89090fa
--- /dev/null
+++ b/src/components/atoms/icons/cog.test.tsx
@@ -0,0 +1,9 @@
+import { render } from '@test-utils';
+import Cog from './cog';
+
+describe('Cog', () => {
+ it('renders a Cog icon', () => {
+ const { container } = render(<Cog />);
+ expect(container).toBeDefined();
+ });
+});