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/templates | |
| parent | a8af53c118478e6ed68975c32cc1202b7c7b798e (diff) | |
test: install and configure cypress
I also configure Jest to avoid conflicts between Cypress and Jest.
Diffstat (limited to 'src/components/templates')
| -rw-r--r-- | src/components/templates/layout/layout.test.tsx | 2 | ||||
| -rw-r--r-- | src/components/templates/page/page-layout.test.tsx | 2 | ||||
| -rw-r--r-- | src/components/templates/sectioned/sectioned-layout.test.tsx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/components/templates/layout/layout.test.tsx b/src/components/templates/layout/layout.test.tsx index 914e1cd..eab7a2a 100644 --- a/src/components/templates/layout/layout.test.tsx +++ b/src/components/templates/layout/layout.test.tsx @@ -1,4 +1,4 @@ -import { render, screen } from '@test-utils'; +import { render, screen } from '@tests/utils'; import Layout from './layout'; const body = diff --git a/src/components/templates/page/page-layout.test.tsx b/src/components/templates/page/page-layout.test.tsx index f2d07d7..b5480d8 100644 --- a/src/components/templates/page/page-layout.test.tsx +++ b/src/components/templates/page/page-layout.test.tsx @@ -1,5 +1,5 @@ import { comments } from '@components/organisms/layout/comments-list.fixture'; -import { render, screen } from '@test-utils'; +import { render, screen } from '@tests/utils'; import { BreadcrumbList } from 'schema-dts'; import PageLayout from './page-layout'; diff --git a/src/components/templates/sectioned/sectioned-layout.test.tsx b/src/components/templates/sectioned/sectioned-layout.test.tsx index 9b8bab5..73d7224 100644 --- a/src/components/templates/sectioned/sectioned-layout.test.tsx +++ b/src/components/templates/sectioned/sectioned-layout.test.tsx @@ -1,4 +1,4 @@ -import { render, screen } from '@test-utils'; +import { render, screen } from '@tests/utils'; import { BreadcrumbList } from 'schema-dts'; import SectionedLayout from './sectioned-layout'; |
