aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/links/link.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-03-31 22:34:23 +0200
committerArmand Philippot <git@armandphilippot.com>2022-03-31 22:34:23 +0200
commit4a79f0d5511d6a6732428687740f8190e000f1b9 (patch)
treedbd7c8a1abdb607f18dc2f72406e5a225cde1602 /src/components/atoms/links/link.test.tsx
parent581632a626f81bce522be1cd809e9832d5b11c99 (diff)
chore: add a Link component
Diffstat (limited to 'src/components/atoms/links/link.test.tsx')
-rw-r--r--src/components/atoms/links/link.test.tsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/atoms/links/link.test.tsx b/src/components/atoms/links/link.test.tsx
new file mode 100644
index 0000000..54e2414
--- /dev/null
+++ b/src/components/atoms/links/link.test.tsx
@@ -0,0 +1,9 @@
+import { render, screen } from '@test-utils';
+import Link from './link';
+
+describe('Link', () => {
+ it('render a link', () => {
+ render(<Link href="#">A link</Link>);
+ expect(screen.getByRole('link')).toHaveTextContent('A link');
+ });
+});