From a22214f2a2efcdac2666e1aad3332cb49d2f2198 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 25 Sep 2023 15:24:06 +0200 Subject: build: convert project to esm --- src/components/organisms/layout/cards-list.test.tsx | 1 + src/components/organisms/layout/comment.test.tsx | 1 + src/components/organisms/layout/comments-list.test.tsx | 1 + src/components/organisms/layout/footer.test.tsx | 1 + src/components/organisms/layout/header.test.tsx | 1 + src/components/organisms/layout/no-results.test.tsx | 1 + src/components/organisms/layout/overview.test.tsx | 1 + src/components/organisms/layout/posts-list.test.tsx | 1 + src/components/organisms/layout/summary.test.tsx | 1 + 9 files changed, 9 insertions(+) (limited to 'src/components/organisms/layout') 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'; -- cgit v1.2.3