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/molecules/forms/flipping-label/flipping-label.test.tsx | 1 + src/components/molecules/forms/labelled-field/labelled-field.test.tsx | 1 + src/components/molecules/forms/radio-group/radio-group.test.tsx | 1 + src/components/molecules/forms/switch/switch.test.tsx | 1 + 4 files changed, 4 insertions(+) (limited to 'src/components/molecules/forms') diff --git a/src/components/molecules/forms/flipping-label/flipping-label.test.tsx b/src/components/molecules/forms/flipping-label/flipping-label.test.tsx index 7813855..71ea2ba 100644 --- a/src/components/molecules/forms/flipping-label/flipping-label.test.tsx +++ b/src/components/molecules/forms/flipping-label/flipping-label.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../../tests/utils'; import { FlippingLabel } from './flipping-label'; diff --git a/src/components/molecules/forms/labelled-field/labelled-field.test.tsx b/src/components/molecules/forms/labelled-field/labelled-field.test.tsx index 9e39e1f..8bc7c39 100644 --- a/src/components/molecules/forms/labelled-field/labelled-field.test.tsx +++ b/src/components/molecules/forms/labelled-field/labelled-field.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../../tests/utils'; import { Input, Label } from '../../../atoms'; import { LabelledField } from './labelled-field'; diff --git a/src/components/molecules/forms/radio-group/radio-group.test.tsx b/src/components/molecules/forms/radio-group/radio-group.test.tsx index dba1541..ba68925 100644 --- a/src/components/molecules/forms/radio-group/radio-group.test.tsx +++ b/src/components/molecules/forms/radio-group/radio-group.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../../tests/utils'; import { Legend } from '../../../atoms'; import { RadioGroup } from './radio-group'; diff --git a/src/components/molecules/forms/switch/switch.test.tsx b/src/components/molecules/forms/switch/switch.test.tsx index 6ccd525..3d091cb 100644 --- a/src/components/molecules/forms/switch/switch.test.tsx +++ b/src/components/molecules/forms/switch/switch.test.tsx @@ -1,3 +1,4 @@ +import { describe, expect, it } from '@jest/globals'; import { render, screen } from '../../../../../tests/utils'; import { Legend } from '../../../atoms'; import { Switch, SwitchOption } from './switch'; -- cgit v1.2.3