diff options
Diffstat (limited to 'cli/tests/testdata/lib_dom_extras.ts')
-rw-r--r-- | cli/tests/testdata/lib_dom_extras.ts | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/cli/tests/testdata/lib_dom_extras.ts b/cli/tests/testdata/lib_dom_extras.ts deleted file mode 100644 index c061bd362..000000000 --- a/cli/tests/testdata/lib_dom_extras.ts +++ /dev/null @@ -1,17 +0,0 @@ -const { diagnostics, files } = await Deno.emit("/main.ts", { - compilerOptions: { - target: "esnext", - lib: ["esnext", "dom"], - }, - sources: { - "/main.ts": `const as = new AbortSignal(); - console.log(as.reason); - - const up = new URLPattern("https://example.com/books/:id"); - console.log(up); - `, - }, -}); - -console.log(diagnostics); -console.log(Object.keys(files).sort()); |