diff options
Diffstat (limited to 'cli/tests/testdata')
7 files changed, 23 insertions, 3 deletions
diff --git a/cli/tests/testdata/npm/registry/@denotest/bin/0.5.0/package.json b/cli/tests/testdata/npm/registry/@denotest/bin/0.5.0/package.json index caa2ef538..1b077a52e 100644 --- a/cli/tests/testdata/npm/registry/@denotest/bin/0.5.0/package.json +++ b/cli/tests/testdata/npm/registry/@denotest/bin/0.5.0/package.json @@ -1,5 +1,5 @@ { - "name": "@deno/bin", + "name": "@denotest/bin", "version": "0.5.0", "bin": "./cli.mjs" } diff --git a/cli/tests/testdata/npm/registry/@denotest/bin/0.6.0/package.json b/cli/tests/testdata/npm/registry/@denotest/bin/0.6.0/package.json index db50464bc..a9ff2d946 100644 --- a/cli/tests/testdata/npm/registry/@denotest/bin/0.6.0/package.json +++ b/cli/tests/testdata/npm/registry/@denotest/bin/0.6.0/package.json @@ -1,4 +1,4 @@ { - "name": "@deno/bin", + "name": "@denotest/bin", "version": "0.6.0" } diff --git a/cli/tests/testdata/npm/registry/@denotest/bin/1.0.0/package.json b/cli/tests/testdata/npm/registry/@denotest/bin/1.0.0/package.json index 78a1abff2..27118c21a 100644 --- a/cli/tests/testdata/npm/registry/@denotest/bin/1.0.0/package.json +++ b/cli/tests/testdata/npm/registry/@denotest/bin/1.0.0/package.json @@ -1,5 +1,5 @@ { - "name": "@deno/bin", + "name": "@denotest/bin", "version": "1.0.0", "bin": { "cli-esm": "./cli.mjs", diff --git a/cli/tests/testdata/npm/run_existing_npm_package/main.out b/cli/tests/testdata/npm/run_existing_npm_package/main.out new file mode 100644 index 000000000..baf7b7afd --- /dev/null +++ b/cli/tests/testdata/npm/run_existing_npm_package/main.out @@ -0,0 +1,3 @@ +Download http://localhost:4545/npm/registry/@denotest/bin +Download http://localhost:4545/npm/registry/@denotest/bin/0.5.0.tgz +Initialize @denotest/bin@0.5.0 diff --git a/cli/tests/testdata/npm/run_existing_npm_package/package.json b/cli/tests/testdata/npm/run_existing_npm_package/package.json new file mode 100644 index 000000000..1cd6d749d --- /dev/null +++ b/cli/tests/testdata/npm/run_existing_npm_package/package.json @@ -0,0 +1,6 @@ +{ + "name": "run-existing-npm-package", + "dependencies": { + "@denotest/bin": "0.5.0" + } +} diff --git a/cli/tests/testdata/npm/run_existing_npm_package_with_subpath/main.out b/cli/tests/testdata/npm/run_existing_npm_package_with_subpath/main.out new file mode 100644 index 000000000..bec78df94 --- /dev/null +++ b/cli/tests/testdata/npm/run_existing_npm_package_with_subpath/main.out @@ -0,0 +1,5 @@ +Download http://localhost:4545/npm/registry/@denotest/bin +Download http://localhost:4545/npm/registry/@denotest/bin/1.0.0.tgz +Initialize @denotest/bin@1.0.0 +dev +--help diff --git a/cli/tests/testdata/npm/run_existing_npm_package_with_subpath/package.json b/cli/tests/testdata/npm/run_existing_npm_package_with_subpath/package.json new file mode 100644 index 000000000..e9a7e84ce --- /dev/null +++ b/cli/tests/testdata/npm/run_existing_npm_package_with_subpath/package.json @@ -0,0 +1,6 @@ +{ + "name": "run-existing-npm-package", + "dependencies": { + "@denotest/bin": "1.0.0" + } +} |