summaryrefslogtreecommitdiff
path: root/tests/testdata/npm/run_existing_npm_package_with_subpath
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testdata/npm/run_existing_npm_package_with_subpath')
-rw-r--r--tests/testdata/npm/run_existing_npm_package_with_subpath/main.out5
-rw-r--r--tests/testdata/npm/run_existing_npm_package_with_subpath/package.json6
2 files changed, 11 insertions, 0 deletions
diff --git a/tests/testdata/npm/run_existing_npm_package_with_subpath/main.out b/tests/testdata/npm/run_existing_npm_package_with_subpath/main.out
new file mode 100644
index 000000000..bec78df94
--- /dev/null
+++ b/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/tests/testdata/npm/run_existing_npm_package_with_subpath/package.json b/tests/testdata/npm/run_existing_npm_package_with_subpath/package.json
new file mode 100644
index 000000000..e9a7e84ce
--- /dev/null
+++ b/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"
+ }
+}