diff --git a/tests/helpers.test.ts b/tests/helpers.test.ts index 5e3ffb3..ce1768b 100644 --- a/tests/helpers.test.ts +++ b/tests/helpers.test.ts @@ -44,6 +44,10 @@ describe('Parse color', () => { const url = parseColor('blue'); expect(url).toBe('average'); }); + test('Light grey', () => { + const url = parseColor('lightgrey'); + expect(url).toBe('unknown'); + }); test('Grey', () => { const url = parseColor('grey'); expect(url).toBe('bad');