aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/templates
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/templates')
-rw-r--r--src/components/templates/layout/layout.test.tsx1
-rw-r--r--src/components/templates/page/page-layout.test.tsx1
-rw-r--r--src/components/templates/sectioned/sectioned-layout.test.tsx3
3 files changed, 4 insertions, 1 deletions
diff --git a/src/components/templates/layout/layout.test.tsx b/src/components/templates/layout/layout.test.tsx
index 53d16e3..6a257f0 100644
--- a/src/components/templates/layout/layout.test.tsx
+++ b/src/components/templates/layout/layout.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render, screen } from '../../../../tests/utils';
import { Layout } from './layout';
diff --git a/src/components/templates/page/page-layout.test.tsx b/src/components/templates/page/page-layout.test.tsx
index 9293c12..d21e14c 100644
--- a/src/components/templates/page/page-layout.test.tsx
+++ b/src/components/templates/page/page-layout.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { BreadcrumbList } from 'schema-dts';
import { render, screen } from '../../../../tests/utils';
import { comments } from '../../organisms/layout/comments-list.fixture';
diff --git a/src/components/templates/sectioned/sectioned-layout.test.tsx b/src/components/templates/sectioned/sectioned-layout.test.tsx
index 204f0d4..2370337 100644
--- a/src/components/templates/sectioned/sectioned-layout.test.tsx
+++ b/src/components/templates/sectioned/sectioned-layout.test.tsx
@@ -1,5 +1,6 @@
-import { render, screen } from '../../../../tests/utils';
+import { describe, expect, it } from '@jest/globals';
import { BreadcrumbList } from 'schema-dts';
+import { render, screen } from '../../../../tests/utils';
import { SectionedLayout } from './sectioned-layout';
const breadcrumbSchema: BreadcrumbList['itemListElement'][] = [];