diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-05-31 19:40:23 +0200 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-06-01 22:32:09 +0200 |
| commit | 8320b1d39ea6402c32e907dbb35082efc6af9f5a (patch) | |
| tree | b5ee9586a4ec91aa15c92dcb513b551716fd4416 /src/components/molecules/forms/ackee-select.test.tsx | |
| parent | 994ad1bec193b2d1a6e0d38d6ef3f3d2bd66c3ea (diff) | |
chore: replace the toggle component
Diffstat (limited to 'src/components/molecules/forms/ackee-select.test.tsx')
| -rw-r--r-- | src/components/molecules/forms/ackee-select.test.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/molecules/forms/ackee-select.test.tsx b/src/components/molecules/forms/ackee-select.test.tsx index 0089c06..d255b00 100644 --- a/src/components/molecules/forms/ackee-select.test.tsx +++ b/src/components/molecules/forms/ackee-select.test.tsx @@ -1,16 +1,17 @@ import user from '@testing-library/user-event'; import { act, render, screen } from '@test-utils'; import AckeeSelect from './ackee-select'; +import { storageKey } from './ackee-select.fixture'; describe('Select', () => { it('should correctly set default option', () => { - render(<AckeeSelect storageKey="ackee-tracking" initialValue="full" />); + render(<AckeeSelect storageKey={storageKey} initialValue="full" />); expect(screen.getByRole('combobox')).toHaveValue('full'); expect(screen.queryByRole('combobox')).not.toHaveValue('partial'); }); it('should correctly change value when user choose another option', async () => { - render(<AckeeSelect storageKey="ackee-tracking" initialValue="full" />); + render(<AckeeSelect storageKey={storageKey} initialValue="full" />); await act(async () => { await user.selectOptions( |
