aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-09-25 15:24:06 +0200
committerArmand Philippot <git@armandphilippot.com>2023-10-24 12:23:48 +0200
commita22214f2a2efcdac2666e1aad3332cb49d2f2198 (patch)
treea1f9c6a20ca5d5fa81c998b8a53974be310a0d02 /src/components/atoms/icons
parenta6ff5eee45215effb3344cb5d631a27a7c0369aa (diff)
build: convert project to esm
Diffstat (limited to 'src/components/atoms/icons')
-rw-r--r--src/components/atoms/icons/arrow.test.tsx1
-rw-r--r--src/components/atoms/icons/career.test.tsx1
-rw-r--r--src/components/atoms/icons/cc-by-sa.test.tsx1
-rw-r--r--src/components/atoms/icons/close.test.tsx1
-rw-r--r--src/components/atoms/icons/cog.test.tsx1
-rw-r--r--src/components/atoms/icons/computer-screen.test.tsx1
-rw-r--r--src/components/atoms/icons/envelop.test.tsx1
-rw-r--r--src/components/atoms/icons/feed.test.tsx1
-rw-r--r--src/components/atoms/icons/hamburger.test.tsx1
-rw-r--r--src/components/atoms/icons/home.test.tsx1
-rw-r--r--src/components/atoms/icons/magnifying-glass.test.tsx1
-rw-r--r--src/components/atoms/icons/moon.test.tsx1
-rw-r--r--src/components/atoms/icons/plus-minus.test.tsx1
-rw-r--r--src/components/atoms/icons/posts-stack.test.tsx1
-rw-r--r--src/components/atoms/icons/sun.test.tsx1
15 files changed, 15 insertions, 0 deletions
diff --git a/src/components/atoms/icons/arrow.test.tsx b/src/components/atoms/icons/arrow.test.tsx
index ed1d1e2..3fedf9b 100644
--- a/src/components/atoms/icons/arrow.test.tsx
+++ b/src/components/atoms/icons/arrow.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { Arrow } from './arrow';
diff --git a/src/components/atoms/icons/career.test.tsx b/src/components/atoms/icons/career.test.tsx
index 7e53f6e..27754a8 100644
--- a/src/components/atoms/icons/career.test.tsx
+++ b/src/components/atoms/icons/career.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { Career } from './career';
diff --git a/src/components/atoms/icons/cc-by-sa.test.tsx b/src/components/atoms/icons/cc-by-sa.test.tsx
index a23059d..7e81835 100644
--- a/src/components/atoms/icons/cc-by-sa.test.tsx
+++ b/src/components/atoms/icons/cc-by-sa.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render, screen } from '../../../../tests/utils';
import { CCBySA } from './cc-by-sa';
diff --git a/src/components/atoms/icons/close.test.tsx b/src/components/atoms/icons/close.test.tsx
index 058b793..b2f325c 100644
--- a/src/components/atoms/icons/close.test.tsx
+++ b/src/components/atoms/icons/close.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { Close } from './close';
diff --git a/src/components/atoms/icons/cog.test.tsx b/src/components/atoms/icons/cog.test.tsx
index 016ef15..f4ea71b 100644
--- a/src/components/atoms/icons/cog.test.tsx
+++ b/src/components/atoms/icons/cog.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { Cog } from './cog';
diff --git a/src/components/atoms/icons/computer-screen.test.tsx b/src/components/atoms/icons/computer-screen.test.tsx
index d74933a..5a61c9b 100644
--- a/src/components/atoms/icons/computer-screen.test.tsx
+++ b/src/components/atoms/icons/computer-screen.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { ComputerScreen } from './computer-screen';
diff --git a/src/components/atoms/icons/envelop.test.tsx b/src/components/atoms/icons/envelop.test.tsx
index 1829fe2..82ed575 100644
--- a/src/components/atoms/icons/envelop.test.tsx
+++ b/src/components/atoms/icons/envelop.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { Envelop } from './envelop';
diff --git a/src/components/atoms/icons/feed.test.tsx b/src/components/atoms/icons/feed.test.tsx
index ca6f331..5a91483 100644
--- a/src/components/atoms/icons/feed.test.tsx
+++ b/src/components/atoms/icons/feed.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { Feed } from './feed';
diff --git a/src/components/atoms/icons/hamburger.test.tsx b/src/components/atoms/icons/hamburger.test.tsx
index b208a42..d7a17b6 100644
--- a/src/components/atoms/icons/hamburger.test.tsx
+++ b/src/components/atoms/icons/hamburger.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { Hamburger } from './hamburger';
diff --git a/src/components/atoms/icons/home.test.tsx b/src/components/atoms/icons/home.test.tsx
index 2fbe42f..e7d03d9 100644
--- a/src/components/atoms/icons/home.test.tsx
+++ b/src/components/atoms/icons/home.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { Home } from './home';
diff --git a/src/components/atoms/icons/magnifying-glass.test.tsx b/src/components/atoms/icons/magnifying-glass.test.tsx
index 4e2f449..5cff75b 100644
--- a/src/components/atoms/icons/magnifying-glass.test.tsx
+++ b/src/components/atoms/icons/magnifying-glass.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { MagnifyingGlass } from './magnifying-glass';
diff --git a/src/components/atoms/icons/moon.test.tsx b/src/components/atoms/icons/moon.test.tsx
index 3c1021a..b164ecd 100644
--- a/src/components/atoms/icons/moon.test.tsx
+++ b/src/components/atoms/icons/moon.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { Moon } from './moon';
diff --git a/src/components/atoms/icons/plus-minus.test.tsx b/src/components/atoms/icons/plus-minus.test.tsx
index 174f8e1..6307401 100644
--- a/src/components/atoms/icons/plus-minus.test.tsx
+++ b/src/components/atoms/icons/plus-minus.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { PlusMinus } from './plus-minus';
diff --git a/src/components/atoms/icons/posts-stack.test.tsx b/src/components/atoms/icons/posts-stack.test.tsx
index 3728d1e..068fbea 100644
--- a/src/components/atoms/icons/posts-stack.test.tsx
+++ b/src/components/atoms/icons/posts-stack.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { PostsStack } from './posts-stack';
diff --git a/src/components/atoms/icons/sun.test.tsx b/src/components/atoms/icons/sun.test.tsx
index 8a43221..2aa916b 100644
--- a/src/components/atoms/icons/sun.test.tsx
+++ b/src/components/atoms/icons/sun.test.tsx
@@ -1,3 +1,4 @@
+import { describe, expect, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { Sun } from './sun';