diff options
| author | Armand Philippot <git@armandphilippot.com> | 2023-09-25 15:24:06 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2023-10-24 12:23:48 +0200 |
| commit | a22214f2a2efcdac2666e1aad3332cb49d2f2198 (patch) | |
| tree | a1f9c6a20ca5d5fa81c998b8a53974be310a0d02 /src/components/atoms/links | |
| parent | a6ff5eee45215effb3344cb5d631a27a7c0369aa (diff) | |
build: convert project to esm
Diffstat (limited to 'src/components/atoms/links')
| -rw-r--r-- | src/components/atoms/links/link.test.tsx | 1 | ||||
| -rw-r--r-- | src/components/atoms/links/nav-link.test.tsx | 1 | ||||
| -rw-r--r-- | src/components/atoms/links/sharing-link.test.tsx | 1 | ||||
| -rw-r--r-- | src/components/atoms/links/social-link.test.tsx | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/src/components/atoms/links/link.test.tsx b/src/components/atoms/links/link.test.tsx index e3c005f..9829c1b 100644 --- a/src/components/atoms/links/link.test.tsx +++ b/src/components/atoms/links/link.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../tests/utils'; import { Link } from './link'; diff --git a/src/components/atoms/links/nav-link.test.tsx b/src/components/atoms/links/nav-link.test.tsx index be0cd50..acf3225 100644 --- a/src/components/atoms/links/nav-link.test.tsx +++ b/src/components/atoms/links/nav-link.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../tests/utils'; import { NavLink } from './nav-link'; diff --git a/src/components/atoms/links/sharing-link.test.tsx b/src/components/atoms/links/sharing-link.test.tsx index 63fb4f5..87375a9 100644 --- a/src/components/atoms/links/sharing-link.test.tsx +++ b/src/components/atoms/links/sharing-link.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../tests/utils'; import { SharingLink } from './sharing-link'; diff --git a/src/components/atoms/links/social-link.test.tsx b/src/components/atoms/links/social-link.test.tsx index 1aca4e3..d2609ca 100644 --- a/src/components/atoms/links/social-link.test.tsx +++ b/src/components/atoms/links/social-link.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../tests/utils'; import { SocialLink } from './social-link'; |
