summaryrefslogtreecommitdiffstats
path: root/src/components/organisms/modals/settings-modal.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-06-08 19:06:27 +0200
committerArmand Philippot <git@armandphilippot.com>2022-06-09 12:34:03 +0200
commitcfdddac43f10d06a8b0e9bcf69dc0ce77ce16649 (patch)
treee3fe4d20291ddbfb0a0a2a17b5cb66107ed735e1 /src/components/organisms/modals/settings-modal.test.tsx
parent58cb40f031f395ca9efccff674ba0f2dae723f50 (diff)
fix(settings): avoid cropped tooltip on small devices
I changed the settings disposition to make tooltip positioning easier. Jest complains about ref passed but everything seems to work as expected so I'm not sure it is relevant. Maybe a bug with cloneElement.
Diffstat (limited to 'src/components/organisms/modals/settings-modal.test.tsx')
-rw-r--r--src/components/organisms/modals/settings-modal.test.tsx32
1 files changed, 29 insertions, 3 deletions
diff --git a/src/components/organisms/modals/settings-modal.test.tsx b/src/components/organisms/modals/settings-modal.test.tsx
index 91f77de..9277067 100644
--- a/src/components/organisms/modals/settings-modal.test.tsx
+++ b/src/components/organisms/modals/settings-modal.test.tsx
@@ -1,14 +1,40 @@
+import { storageKey as ackeeStorageKey } from '@components/molecules/forms/ackee-toggle.fixture';
+import { storageKey as motionStorageKey } from '@components/molecules/forms/motion-toggle.fixture';
import { render, screen } from '@tests/utils';
import SettingsModal from './settings-modal';
describe('SettingsModal', () => {
- it('renders a fake heading', () => {
+ it('renders the modal heading', () => {
render(
<SettingsModal
- ackeeStorageKey="ackee-tracking"
- motionStorageKey="reduce-motion"
+ ackeeStorageKey={ackeeStorageKey}
+ motionStorageKey={motionStorageKey}
/>
);
expect(screen.getByText(/Settings/i)).toBeInTheDocument();
});
+
+ it('renders a settings form', () => {
+ render(
+ <SettingsModal
+ ackeeStorageKey={ackeeStorageKey}
+ motionStorageKey={motionStorageKey}
+ />
+ );
+ expect(
+ screen.getByRole('form', { name: /^Settings form/i })
+ ).toBeInTheDocument();
+ expect(
+ screen.getByRole('radiogroup', { name: /^Theme:/i })
+ ).toBeInTheDocument();
+ expect(
+ screen.getByRole('radiogroup', { name: /^Code blocks:/i })
+ ).toBeInTheDocument();
+ expect(
+ screen.getByRole('radiogroup', { name: /^Animations:/i })
+ ).toBeInTheDocument();
+ expect(
+ screen.getByRole('radiogroup', { name: /^Tracking:/i })
+ ).toBeInTheDocument();
+ });
});