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/organisms/toolbar | |
| parent | a6ff5eee45215effb3344cb5d631a27a7c0369aa (diff) | |
build: convert project to esm
Diffstat (limited to 'src/components/organisms/toolbar')
4 files changed, 4 insertions, 0 deletions
| diff --git a/src/components/organisms/toolbar/main-nav.test.tsx b/src/components/organisms/toolbar/main-nav.test.tsx index 12f30ce..054a14e 100644 --- a/src/components/organisms/toolbar/main-nav.test.tsx +++ b/src/components/organisms/toolbar/main-nav.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals';  import { render, screen } from '../../../../tests/utils';  import { MainNav } from './main-nav'; diff --git a/src/components/organisms/toolbar/search.test.tsx b/src/components/organisms/toolbar/search.test.tsx index 625dd4b..6f5ed7e 100644 --- a/src/components/organisms/toolbar/search.test.tsx +++ b/src/components/organisms/toolbar/search.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals';  import { render, screen } from '../../../../tests/utils';  import { Search } from './search'; diff --git a/src/components/organisms/toolbar/settings.test.tsx b/src/components/organisms/toolbar/settings.test.tsx index d4e542d..9dab407 100644 --- a/src/components/organisms/toolbar/settings.test.tsx +++ b/src/components/organisms/toolbar/settings.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals';  import { render, screen } from '../../../../tests/utils';  import { Settings } from './settings'; diff --git a/src/components/organisms/toolbar/toolbar.test.tsx b/src/components/organisms/toolbar/toolbar.test.tsx index 62020dc..8fb06b0 100644 --- a/src/components/organisms/toolbar/toolbar.test.tsx +++ b/src/components/organisms/toolbar/toolbar.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals';  import { render, screen } from '../../../../tests/utils';  import { Toolbar } from './toolbar'; | 
