aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/layout')
-rw-r--r--src/components/organisms/layout/cards-list.test.tsx1
-rw-r--r--src/components/organisms/layout/comment.test.tsx1
-rw-r--r--src/components/organisms/layout/comments-list.test.tsx1
-rw-r--r--src/components/organisms/layout/footer.test.tsx1
-rw-r--r--src/components/organisms/layout/header.test.tsx1
-rw-r--r--src/components/organisms/layout/no-results.test.tsx1
-rw-r--r--src/components/organisms/layout/overview.test.tsx1
-rw-r--r--src/components/organisms/layout/posts-list.test.tsx1
-rw-r--r--src/components/organisms/layout/summary.test.tsx1
9 files changed, 9 insertions, 0 deletions
diff --git a/src/components/organisms/layout/cards-list.test.tsx b/src/components/organisms/layout/cards-list.test.tsx
index 968a349..751a502 100644
--- a/src/components/organisms/layout/cards-list.test.tsx
+++ b/src/components/organisms/layout/cards-list.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render, screen } from '../../../../tests/utils';
import { CardsList, type CardsListItem } from './cards-list';
diff --git a/src/components/organisms/layout/comment.test.tsx b/src/components/organisms/layout/comment.test.tsx
index 6414371..1aa9e4a 100644
--- a/src/components/organisms/layout/comment.test.tsx
+++ b/src/components/organisms/layout/comment.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render, screen } from '../../../../tests/utils';
import { Comment } from './comment';
import {
diff --git a/src/components/organisms/layout/comments-list.test.tsx b/src/components/organisms/layout/comments-list.test.tsx
index 0518425..f245ebb 100644
--- a/src/components/organisms/layout/comments-list.test.tsx
+++ b/src/components/organisms/layout/comments-list.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { saveComment } from './comment.fixture';
import { CommentsList } from './comments-list';
diff --git a/src/components/organisms/layout/footer.test.tsx b/src/components/organisms/layout/footer.test.tsx
index f513739..51f21fb 100644
--- a/src/components/organisms/layout/footer.test.tsx
+++ b/src/components/organisms/layout/footer.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render, screen } from '../../../../tests/utils';
import { Footer, type FooterProps } from './footer';
diff --git a/src/components/organisms/layout/header.test.tsx b/src/components/organisms/layout/header.test.tsx
index 78df341..7f72f24 100644
--- a/src/components/organisms/layout/header.test.tsx
+++ b/src/components/organisms/layout/header.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render, screen } from '../../../../tests/utils';
import { Header } from './header';
diff --git a/src/components/organisms/layout/no-results.test.tsx b/src/components/organisms/layout/no-results.test.tsx
index 914b2db..85f60cf 100644
--- a/src/components/organisms/layout/no-results.test.tsx
+++ b/src/components/organisms/layout/no-results.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render, screen } from '../../../../tests/utils';
import { NoResults } from './no-results';
diff --git a/src/components/organisms/layout/overview.test.tsx b/src/components/organisms/layout/overview.test.tsx
index 25c1c26..0f2af7b 100644
--- a/src/components/organisms/layout/overview.test.tsx
+++ b/src/components/organisms/layout/overview.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render, screen } from '../../../../tests/utils';
import { Overview, type OverviewMeta } from './overview';
diff --git a/src/components/organisms/layout/posts-list.test.tsx b/src/components/organisms/layout/posts-list.test.tsx
index 41a8679..d5273fc 100644
--- a/src/components/organisms/layout/posts-list.test.tsx
+++ b/src/components/organisms/layout/posts-list.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render, screen } from '../../../../tests/utils';
import { PostsList } from './posts-list';
import { posts, searchPage } from './posts-list.fixture';
diff --git a/src/components/organisms/layout/summary.test.tsx b/src/components/organisms/layout/summary.test.tsx
index 607d676..3e58e9a 100644
--- a/src/components/organisms/layout/summary.test.tsx
+++ b/src/components/organisms/layout/summary.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render, screen } from '../../../../tests/utils';
import { Summary } from './summary';
import { cover, intro, meta, title, url } from './summary.fixture';