diff options
Diffstat (limited to 'cli/tests/testdata')
5 files changed, 12 insertions, 1 deletions
diff --git a/cli/tests/testdata/npm/compare_globals/main.js b/cli/tests/testdata/npm/compare_globals/main.js new file mode 100644 index 000000000..ce43e32b1 --- /dev/null +++ b/cli/tests/testdata/npm/compare_globals/main.js @@ -0,0 +1,2 @@ +import * as globals from "npm:@denotest/globals"; +console.log(globals.global === globals.globalThis); diff --git a/cli/tests/testdata/npm/compare_globals/main.out b/cli/tests/testdata/npm/compare_globals/main.out new file mode 100644 index 000000000..a1a5c0e8f --- /dev/null +++ b/cli/tests/testdata/npm/compare_globals/main.out @@ -0,0 +1,3 @@ +Download http://localhost:4545/npm/registry/@denotest/globals +Download http://localhost:4545/npm/registry/@denotest/globals/1.0.0.tgz +true diff --git a/cli/tests/testdata/npm/registry/@denotest/cjs-local-global-decls/1.0.0/package.json b/cli/tests/testdata/npm/registry/@denotest/cjs-local-global-decls/1.0.0/package.json index b151deaf6..1048fe76d 100644 --- a/cli/tests/testdata/npm/registry/@denotest/cjs-local-global-decls/1.0.0/package.json +++ b/cli/tests/testdata/npm/registry/@denotest/cjs-local-global-decls/1.0.0/package.json @@ -1,4 +1,4 @@ { - "name": "@deno/cjs-local-global-decls", + "name": "@denotest/cjs-local-global-decls", "version": "1.0.0" } diff --git a/cli/tests/testdata/npm/registry/@denotest/globals/1.0.0/index.js b/cli/tests/testdata/npm/registry/@denotest/globals/1.0.0/index.js new file mode 100644 index 000000000..be5e6e5ac --- /dev/null +++ b/cli/tests/testdata/npm/registry/@denotest/globals/1.0.0/index.js @@ -0,0 +1,2 @@ +exports.globalThis = globalThis; +exports.global = global; diff --git a/cli/tests/testdata/npm/registry/@denotest/globals/1.0.0/package.json b/cli/tests/testdata/npm/registry/@denotest/globals/1.0.0/package.json new file mode 100644 index 000000000..cba0742c1 --- /dev/null +++ b/cli/tests/testdata/npm/registry/@denotest/globals/1.0.0/package.json @@ -0,0 +1,4 @@ +{ + "name": "@denotest/globals", + "version": "1.0.0" +} |