diff options
Diffstat (limited to 'tests/testdata/npm')
| -rw-r--r-- | tests/testdata/npm/conditional_exports/main.js | 15 | ||||
| -rw-r--r-- | tests/testdata/npm/conditional_exports/main.out | 19 | ||||
| -rw-r--r-- | tests/testdata/npm/conditional_exports/main_node_modules.out | 23 | ||||
| -rw-r--r-- | tests/testdata/npm/esm/main.js | 9 | ||||
| -rw-r--r-- | tests/testdata/npm/esm/main.out | 3 | ||||
| -rw-r--r-- | tests/testdata/npm/esm/test.js | 5 | ||||
| -rw-r--r-- | tests/testdata/npm/esm/test.out | 11 |
7 files changed, 0 insertions, 85 deletions
diff --git a/tests/testdata/npm/conditional_exports/main.js b/tests/testdata/npm/conditional_exports/main.js deleted file mode 100644 index 52b78bc22..000000000 --- a/tests/testdata/npm/conditional_exports/main.js +++ /dev/null @@ -1,15 +0,0 @@ -import mod from "npm:@denotest/conditional-exports"; -import foo from "npm:@denotest/conditional-exports/foo.js"; -import client from "npm:@denotest/conditional-exports/client"; -import clientFoo from "npm:@denotest/conditional-exports/client/foo"; -import clientBar from "npm:@denotest/conditional-exports/client/bar"; -import clientM from "npm:@denotest/conditional-exports/client/m"; -import supportsESM from "npm:supports-esm"; - -console.log(mod); -console.log(foo); -console.log(client); -console.log(clientFoo); -console.log(clientBar); -console.log(clientM); -console.log(supportsESM); diff --git a/tests/testdata/npm/conditional_exports/main.out b/tests/testdata/npm/conditional_exports/main.out deleted file mode 100644 index dbd1b87fe..000000000 --- a/tests/testdata/npm/conditional_exports/main.out +++ /dev/null @@ -1,19 +0,0 @@ -[UNORDERED_START] -Download http://localhost:4545/npm/registry/@denotest/conditional-exports -Download http://localhost:4545/npm/registry/supports-esm -Download http://localhost:4545/npm/registry/has-package-exports -Download http://localhost:4545/npm/registry/@ljharb/has-package-exports-patterns -[UNORDERED_END] -[UNORDERED_START] -Download http://localhost:4545/npm/registry/@denotest/conditional-exports/1.0.0.tgz -Download http://localhost:4545/npm/registry/@ljharb/has-package-exports-patterns/has-package-exports-patterns-0.0.2.tgz -Download http://localhost:4545/npm/registry/has-package-exports/has-package-exports-1.3.0.tgz -Download http://localhost:4545/npm/registry/supports-esm/supports-esm-1.0.0.tgz -[UNORDERED_END] -{ hello: "from esm" } -{ hello: "from foo" } -{ hello: "from esm client" } -{ hello: "from esm client foo" } -{ hello: "from esm client bar" } -{ hello: "from esm client m" } -true diff --git a/tests/testdata/npm/conditional_exports/main_node_modules.out b/tests/testdata/npm/conditional_exports/main_node_modules.out deleted file mode 100644 index 460aec0f1..000000000 --- a/tests/testdata/npm/conditional_exports/main_node_modules.out +++ /dev/null @@ -1,23 +0,0 @@ -[UNORDERED_START] -Download http://localhost:4545/npm/registry/@denotest/conditional-exports -Download http://localhost:4545/npm/registry/supports-esm -Download http://localhost:4545/npm/registry/has-package-exports -Download http://localhost:4545/npm/registry/@ljharb/has-package-exports-patterns -[UNORDERED_END] -[UNORDERED_START] -Download http://localhost:4545/npm/registry/@denotest/conditional-exports/1.0.0.tgz -Initialize @denotest/conditional-exports@1.0.0 -Download http://localhost:4545/npm/registry/@ljharb/has-package-exports-patterns/has-package-exports-patterns-0.0.2.tgz -Initialize @ljharb/has-package-exports-patterns@0.0.2 -Download http://localhost:4545/npm/registry/has-package-exports/has-package-exports-1.3.0.tgz -Initialize has-package-exports@1.3.0 -Download http://localhost:4545/npm/registry/supports-esm/supports-esm-1.0.0.tgz -Initialize supports-esm@1.0.0 -[UNORDERED_END] -{ hello: "from esm" } -{ hello: "from foo" } -{ hello: "from esm client" } -{ hello: "from esm client foo" } -{ hello: "from esm client bar" } -{ hello: "from esm client m" } -true diff --git a/tests/testdata/npm/esm/main.js b/tests/testdata/npm/esm/main.js deleted file mode 100644 index 0f1fa2590..000000000 --- a/tests/testdata/npm/esm/main.js +++ /dev/null @@ -1,9 +0,0 @@ -import chalk from "npm:chalk@5"; - -if (import.meta.main) { - console.log(chalk.green("chalk esm loads")); -} - -export function test(value) { - return chalk.red(value); -} diff --git a/tests/testdata/npm/esm/main.out b/tests/testdata/npm/esm/main.out deleted file mode 100644 index 2010a5b73..000000000 --- a/tests/testdata/npm/esm/main.out +++ /dev/null @@ -1,3 +0,0 @@ -Download http://localhost:4545/npm/registry/chalk -Download http://localhost:4545/npm/registry/chalk/chalk-5.0.1.tgz -chalk esm loads diff --git a/tests/testdata/npm/esm/test.js b/tests/testdata/npm/esm/test.js deleted file mode 100644 index b9c91c715..000000000 --- a/tests/testdata/npm/esm/test.js +++ /dev/null @@ -1,5 +0,0 @@ -import { test } from "./main.js"; - -Deno.test("test", () => { - console.log(test("test")); -}); diff --git a/tests/testdata/npm/esm/test.out b/tests/testdata/npm/esm/test.out deleted file mode 100644 index a87924424..000000000 --- a/tests/testdata/npm/esm/test.out +++ /dev/null @@ -1,11 +0,0 @@ -Download http://localhost:4545/npm/registry/chalk -Download http://localhost:4545/npm/registry/chalk/chalk-5.0.1.tgz -running 1 test from ./npm/esm/test.js -test ... -------- output ------- -test ------ output end ----- -test ... ok ([WILDCARD]s) - -ok | 1 passed | 0 failed ([WILDCARD]s) - |
