diff options
author | 2023-09-12 18:56:52 +0900 | |
---|---|---|
committer | 2023-09-12 17:56:52 +0800 | |
commit | 644825845c11c8d100a9b0d16b69a23c165c529e (patch) | |
tree | 124f2c739b9119ec0c26c3f6b51444ec025df0b6 /packages/integrations/deno/test/basics.test.ts | |
parent | bf341d6762b1907d22b0d56b1df114585a180ad0 (diff) | |
download | astro-644825845c11c8d100a9b0d16b69a23c165c529e.tar.gz astro-644825845c11c8d100a9b0d16b69a23c165c529e.tar.zst astro-644825845c11c8d100a9b0d16b69a23c165c529e.zip |
Removed `<style>` with `type="text/css"` from inline output at build time (#8480)
Diffstat (limited to 'packages/integrations/deno/test/basics.test.ts')
-rw-r--r-- | packages/integrations/deno/test/basics.test.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/integrations/deno/test/basics.test.ts b/packages/integrations/deno/test/basics.test.ts index 78672d34b..043fab2d6 100644 --- a/packages/integrations/deno/test/basics.test.ts +++ b/packages/integrations/deno/test/basics.test.ts @@ -50,8 +50,6 @@ Deno.test({ const doc = new DOMParser().parseFromString(html, `text/html`); const style = doc!.querySelector('style'); - assertEquals(style?.getAttribute('type'), 'text/css'); - assert(style?.textContent?.includes('Courier New')); }); |