diff options
Diffstat (limited to 'tests')
3 files changed, 37 insertions, 0 deletions
diff --git a/tests/specs/install/future_install_node_modules_tag/__test__.jsonc b/tests/specs/install/future_install_node_modules_tag/__test__.jsonc new file mode 100644 index 000000000..31c53749a --- /dev/null +++ b/tests/specs/install/future_install_node_modules_tag/__test__.jsonc @@ -0,0 +1,12 @@ +{ + "tempDir": true, + "steps": [ + { + "envs": { + "DENO_FUTURE": "1" + }, + "args": "install", + "output": "install.out" + } + ] +} diff --git a/tests/specs/install/future_install_node_modules_tag/install.out b/tests/specs/install/future_install_node_modules_tag/install.out new file mode 100644 index 000000000..f48a9d858 --- /dev/null +++ b/tests/specs/install/future_install_node_modules_tag/install.out @@ -0,0 +1,20 @@ +[UNORDERED_START] +Download http://localhost:4260/ajv +Download http://localhost:4260/fast-deep-equal +Download http://localhost:4260/json-schema-traverse +Download http://localhost:4260/require-from-string +Download http://localhost:4260/uri-js +Download http://localhost:4260/punycode +Download http://localhost:4260/ajv/ajv-8.11.0.tgz +Download http://localhost:4260/json-schema-traverse/json-schema-traverse-1.0.0.tgz +Download http://localhost:4260/fast-deep-equal/fast-deep-equal-3.1.3.tgz +Download http://localhost:4260/require-from-string/require-from-string-2.0.2.tgz +Download http://localhost:4260/uri-js/uri-js-4.4.1.tgz +Download http://localhost:4260/punycode/punycode-2.1.1.tgz +Initialize require-from-string@2.0.2 +Initialize punycode@2.1.1 +Initialize fast-deep-equal@3.1.3 +Initialize json-schema-traverse@1.0.0 +Initialize uri-js@4.4.1 +Initialize ajv@8.11.0 +[UNORDERED_END] diff --git a/tests/specs/install/future_install_node_modules_tag/package.json b/tests/specs/install/future_install_node_modules_tag/package.json new file mode 100644 index 000000000..efcd075e8 --- /dev/null +++ b/tests/specs/install/future_install_node_modules_tag/package.json @@ -0,0 +1,5 @@ +{ + "dependencies": { + "ajv": "latest" + } +} |