diff --git a/test/js/lib/components/colors/Output.spec.ts b/test/js/lib/components/colors/Output.spec.ts index 16f3e3bb..9671417c 100644 --- a/test/js/lib/components/colors/Output.spec.ts +++ b/test/js/lib/components/colors/Output.spec.ts @@ -28,19 +28,4 @@ describe('Output', () => { getByText(serialize(to(HSL_WHITE, 'oklch'), { inGamut: false })), ).toBeVisible(); }); - - it('renders warning if out of gamut', () => { - const color: PlainColorObject = { - space: ColorSpace.get('oklch'), - coords: [0.01, 0.02, 0], - alpha: 1, - }; - const { getByText } = render(Output, { - type: 'fg', - color, - format: 'hsl', - }); - - expect(getByText('outside the HSL gamut', { exact: false })).toBeVisible(); - }); });