diff options
Diffstat (limited to 'packages/integrations/deno/test/basics.test.ts')
-rw-r--r-- | packages/integrations/deno/test/basics.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/deno/test/basics.test.ts b/packages/integrations/deno/test/basics.test.ts index 30bca0eb3..78672d34b 100644 --- a/packages/integrations/deno/test/basics.test.ts +++ b/packages/integrations/deno/test/basics.test.ts @@ -52,7 +52,7 @@ Deno.test({ assertEquals(style?.getAttribute('type'), 'text/css'); - assert(style?.textContent?.includes('Courier New')) + assert(style?.textContent?.includes('Courier New')); }); await t.step('Correctly loads run-time env variables', async () => { |