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