summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/subdir/polyfill.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/subdir/polyfill.ts')
-rw-r--r--cli/tests/testdata/subdir/polyfill.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/cli/tests/testdata/subdir/polyfill.ts b/cli/tests/testdata/subdir/polyfill.ts
deleted file mode 100644
index 7af67c4c0..000000000
--- a/cli/tests/testdata/subdir/polyfill.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-declare global {
- const polyfill: () => void;
-}
-
-// deno-lint-ignore no-explicit-any
-(globalThis as any).polyfill = () => {
- console.log("polyfill");
-};