diff options
Diffstat (limited to 'cli/tests/testdata/npm/cjs_module_export_assignment_number')
| -rw-r--r-- | cli/tests/testdata/npm/cjs_module_export_assignment_number/main.out | 3 | ||||
| -rw-r--r-- | cli/tests/testdata/npm/cjs_module_export_assignment_number/main.ts | 7 |
2 files changed, 0 insertions, 10 deletions
diff --git a/cli/tests/testdata/npm/cjs_module_export_assignment_number/main.out b/cli/tests/testdata/npm/cjs_module_export_assignment_number/main.out deleted file mode 100644 index e559775cf..000000000 --- a/cli/tests/testdata/npm/cjs_module_export_assignment_number/main.out +++ /dev/null @@ -1,3 +0,0 @@ -5 -5 -[Module: null prototype] { default: 5 } diff --git a/cli/tests/testdata/npm/cjs_module_export_assignment_number/main.ts b/cli/tests/testdata/npm/cjs_module_export_assignment_number/main.ts deleted file mode 100644 index aee24bf19..000000000 --- a/cli/tests/testdata/npm/cjs_module_export_assignment_number/main.ts +++ /dev/null @@ -1,7 +0,0 @@ -import defaultImport, * as namespaceImport from "npm:@denotest/cjs-module-export-assignment-number"; - -const testDefault: 5 = defaultImport; -console.log(testDefault); -const testNamespace: 5 = namespaceImport.default; -console.log(testNamespace); -console.log(namespaceImport); |
