From c232ecc6af5a09a8f0480e3b2b87ef2cd2b3a348 Mon Sep 17 00:00:00 2001 From: Mohammad Sulaiman Date: Wed, 25 Sep 2024 21:46:18 +0300 Subject: chore: deprecate npm itests (#25804) --- tests/testdata/npm/cjs_module_export_assignment/main.out | 6 ------ tests/testdata/npm/cjs_module_export_assignment/main.ts | 6 ------ 2 files changed, 12 deletions(-) delete mode 100644 tests/testdata/npm/cjs_module_export_assignment/main.out delete mode 100644 tests/testdata/npm/cjs_module_export_assignment/main.ts (limited to 'tests/testdata/npm/cjs_module_export_assignment') diff --git a/tests/testdata/npm/cjs_module_export_assignment/main.out b/tests/testdata/npm/cjs_module_export_assignment/main.out deleted file mode 100644 index dea185e38..000000000 --- a/tests/testdata/npm/cjs_module_export_assignment/main.out +++ /dev/null @@ -1,6 +0,0 @@ -{ func: [Function: func] } -[Module: null prototype] { - default: { func: [Function: func] }, - func: [Function: func] -} -5 diff --git a/tests/testdata/npm/cjs_module_export_assignment/main.ts b/tests/testdata/npm/cjs_module_export_assignment/main.ts deleted file mode 100644 index 93d3db1c3..000000000 --- a/tests/testdata/npm/cjs_module_export_assignment/main.ts +++ /dev/null @@ -1,6 +0,0 @@ -import defaultImport, * as namespaceImport from "npm:@denotest/cjs-module-export-assignment"; -import { func } from "npm:@denotest/cjs-module-export-assignment"; - -console.log(defaultImport); -console.log(namespaceImport); -console.log(func()); -- cgit v1.2.3