From 0d88cf015746646c965fb55112059ab2b3e8587c Mon Sep 17 00:00:00 2001 From: Titouan Launay Date: Wed, 17 Jul 2024 11:13:54 +0200 Subject: [PATCH] Changes test to check for :is selector --- tests/compile.test.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/compile.test.tsx b/tests/compile.test.tsx index 0663b0f..ca32421 100644 --- a/tests/compile.test.tsx +++ b/tests/compile.test.tsx @@ -39,7 +39,6 @@ test("works with tailwind dark", async () => { const html = await compile(); - console.log(html); - expect(html).toContain("rgba(239, 68, 68"); + expect(html).not.toContain(":is"); });