summaryrefslogtreecommitdiff
path: root/tests/testdata/package_json/deno_json/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/package_json/deno_json/main.ts')
-rw-r--r--tests/testdata/package_json/deno_json/main.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/testdata/package_json/deno_json/main.ts b/tests/testdata/package_json/deno_json/main.ts
deleted file mode 100644
index 7768ff3fc..000000000
--- a/tests/testdata/package_json/deno_json/main.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import { NUMBER_VALUE } from "other";
-import * as test from "@denotest/esm-basic";
-
-test.setValue(2);
-console.log(test.getValue());
-
-// these should cause type errors
-const _strValue1: string = NUMBER_VALUE;
-const _strValue2: string = test.getValue();