diff options
author | 2022-04-21 16:11:09 +0000 | |
---|---|---|
committer | 2022-04-21 16:11:09 +0000 | |
commit | 8768f23f95840f3b66504fc2ecb39678c986cbe8 (patch) | |
tree | 8e712a5cdbe1d601f0c141b81e402d96b5b9f44b /packages/integrations/deno/test | |
parent | ae9ac5cbdceba0687d83d56d9d5f80479ab88710 (diff) | |
download | astro-8768f23f95840f3b66504fc2ecb39678c986cbe8.tar.gz astro-8768f23f95840f3b66504fc2ecb39678c986cbe8.tar.zst astro-8768f23f95840f3b66504fc2ecb39678c986cbe8.zip |
[ci] format
Diffstat (limited to 'packages/integrations/deno/test')
-rw-r--r-- | packages/integrations/deno/test/basics.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/deno/test/basics.test.js b/packages/integrations/deno/test/basics.test.js index 42efc87d9..bc7322067 100644 --- a/packages/integrations/deno/test/basics.test.js +++ b/packages/integrations/deno/test/basics.test.js @@ -14,7 +14,7 @@ Deno.test({ const html = await resp.text(); assert(html); const doc = new DOMParser().parseFromString(html, `text/html`); - const div = doc.querySelector("#react"); + const div = doc.querySelector('#react'); assert(div, 'div exists'); }); }, |