diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-06-01 23:21:30 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-06-02 19:10:28 +0200 |
| commit | f7cc48495b085fe8f6cfa37e80e968d5b47639df (patch) | |
| tree | 1e43ee0095979a0009b521ef7cc2a0f069b132b3 /src/components/atoms/links | |
| parent | a8af53c118478e6ed68975c32cc1202b7c7b798e (diff) | |
test: install and configure cypress
I also configure Jest to avoid conflicts between Cypress and Jest.
Diffstat (limited to 'src/components/atoms/links')
| -rw-r--r-- | src/components/atoms/links/link.test.tsx | 2 | ||||
| -rw-r--r-- | src/components/atoms/links/nav-link.test.tsx | 2 | ||||
| -rw-r--r-- | src/components/atoms/links/sharing-link.test.tsx | 2 | ||||
| -rw-r--r-- | src/components/atoms/links/social-link.test.tsx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/components/atoms/links/link.test.tsx b/src/components/atoms/links/link.test.tsx index 54e2414..16d52d2 100644 --- a/src/components/atoms/links/link.test.tsx +++ b/src/components/atoms/links/link.test.tsx @@ -1,4 +1,4 @@ -import { render, screen } from '@test-utils'; +import { render, screen } from '@tests/utils'; import Link from './link'; describe('Link', () => { diff --git a/src/components/atoms/links/nav-link.test.tsx b/src/components/atoms/links/nav-link.test.tsx index 7750cee..b9a595a 100644 --- a/src/components/atoms/links/nav-link.test.tsx +++ b/src/components/atoms/links/nav-link.test.tsx @@ -1,4 +1,4 @@ -import { render, screen } from '@test-utils'; +import { render, screen } from '@tests/utils'; import NavLink from './nav-link'; describe('NavLink', () => { diff --git a/src/components/atoms/links/sharing-link.test.tsx b/src/components/atoms/links/sharing-link.test.tsx index e4c849c..7989d04 100644 --- a/src/components/atoms/links/sharing-link.test.tsx +++ b/src/components/atoms/links/sharing-link.test.tsx @@ -1,4 +1,4 @@ -import { render, screen } from '@test-utils'; +import { render, screen } from '@tests/utils'; import SharingLink from './sharing-link'; describe('SharingLink', () => { diff --git a/src/components/atoms/links/social-link.test.tsx b/src/components/atoms/links/social-link.test.tsx index f49fb5a..e13689c 100644 --- a/src/components/atoms/links/social-link.test.tsx +++ b/src/components/atoms/links/social-link.test.tsx @@ -1,4 +1,4 @@ -import { render, screen } from '@test-utils'; +import { render, screen } from '@tests/utils'; import SocialLink from './social-link'; /** |
