diff options
Diffstat (limited to 'tests/specs')
42 files changed, 75 insertions, 105 deletions
diff --git a/tests/specs/bench/package_json/__test__.jsonc b/tests/specs/bench/package_json/__test__.jsonc index 001cc8b54..f41748ab5 100644 --- a/tests/specs/bench/package_json/__test__.jsonc +++ b/tests/specs/bench/package_json/__test__.jsonc @@ -1,5 +1,13 @@ { "tempDir": true, - "args": "bench", - "output": "lib.bench.out" + "steps": [ + { + "args": "install", + "output": "install.out" + }, + { + "args": "bench", + "output": "lib.bench.out" + } + ] } diff --git a/tests/specs/bench/package_json/install.out b/tests/specs/bench/package_json/install.out new file mode 100644 index 000000000..b8114c12a --- /dev/null +++ b/tests/specs/bench/package_json/install.out @@ -0,0 +1,3 @@ +Download http://localhost:4260/@denotest/esm-basic +Download http://localhost:4260/@denotest/esm-basic/1.0.0.tgz +Initialize @denotest/esm-basic@1.0.0 diff --git a/tests/specs/bench/package_json/lib.bench.out b/tests/specs/bench/package_json/lib.bench.out index 24da289a9..066c91169 100644 --- a/tests/specs/bench/package_json/lib.bench.out +++ b/tests/specs/bench/package_json/lib.bench.out @@ -1,6 +1,3 @@ -Download http://localhost:4260/@denotest/esm-basic -Download http://localhost:4260/@denotest/esm-basic/1.0.0.tgz -Initialize @denotest/esm-basic@1.0.0 Check file:///[WILDCARD]/lib.bench.ts CPU | [WILDCARD] Runtime | [WILDCARD] diff --git a/tests/specs/cache/package_json/__test__.jsonc b/tests/specs/cache/package_json/__test__.jsonc index b25ac147d..803d5ef09 100644 --- a/tests/specs/cache/package_json/__test__.jsonc +++ b/tests/specs/cache/package_json/__test__.jsonc @@ -1,5 +1,7 @@ { "tempDir": true, + // TODO(2.0): decide if this test should be fixed or removed + "ignore": true, "args": "cache main.ts", "output": "main.cache.out" } diff --git a/tests/specs/cert/cafile_install/__test__.jsonc b/tests/specs/cert/cafile_install/__test__.jsonc index 9591c7769..67af9be05 100644 --- a/tests/specs/cert/cafile_install/__test__.jsonc +++ b/tests/specs/cert/cafile_install/__test__.jsonc @@ -9,6 +9,7 @@ "echo_test", "--root", "$PWD", + "-g", "https://localhost:5545/echo.ts" ], "output": "[WILDCARD]" diff --git a/tests/specs/compile/npmrc_auto_install/deno.json b/tests/specs/compile/npmrc_auto_install/deno.json index 176354f98..b2edaa035 100644 --- a/tests/specs/compile/npmrc_auto_install/deno.json +++ b/tests/specs/compile/npmrc_auto_install/deno.json @@ -1,3 +1,3 @@ { - "nodeModulesDir": true + "nodeModules": "local-auto" } diff --git a/tests/specs/future/import_assertions/__test__.jsonc b/tests/specs/future/import_assertions/__test__.jsonc index 1c55d2220..b7356d924 100644 --- a/tests/specs/future/import_assertions/__test__.jsonc +++ b/tests/specs/future/import_assertions/__test__.jsonc @@ -1,25 +1,5 @@ { - "steps": [ - { - "args": "run main.js", - "output": "error.out", - "exitCode": 1, - "envs": { - "DENO_FUTURE": "1" - } - }, - // Running the same multiple times, should warn each time. - { - "args": "run main.js", - "output": "error.out", - "exitCode": 1, - "envs": { - "DENO_FUTURE": "1" - } - }, - { - "args": "run main.js", - "output": "success.out" - } - ] + "args": "run main.js", + "output": "error.out", + "exitCode": 1 } diff --git a/tests/specs/future/import_assertions/success.out b/tests/specs/future/import_assertions/success.out deleted file mode 100644 index fcf28b943..000000000 --- a/tests/specs/future/import_assertions/success.out +++ /dev/null @@ -1,7 +0,0 @@ -⚠️ Import assertions are deprecated. Use `with` keyword, instead of 'assert' keyword. - -import foo from "./main.json" assert { type: "json" }; - - at [WILDCARD]import_assertions/main.js:1:30 - -{ foo: "foo" } diff --git a/tests/specs/install/no_future_install_global/__test__.jsonc b/tests/specs/install/no_future_install_global/__test__.jsonc deleted file mode 100644 index 657cdab80..000000000 --- a/tests/specs/install/no_future_install_global/__test__.jsonc +++ /dev/null @@ -1,13 +0,0 @@ -{ - "tempDir": true, - "steps": [ - { - "args": "install --root ./bins --name deno-test-bin ./pkg/main.js", - "output": "install.out" - }, - { - "args": "run -A ./assert.js", - "output": "" - } - ] -} diff --git a/tests/specs/install/no_future_install_global/assert.js b/tests/specs/install/no_future_install_global/assert.js deleted file mode 100644 index c7a6a0680..000000000 --- a/tests/specs/install/no_future_install_global/assert.js +++ /dev/null @@ -1,11 +0,0 @@ -const dirs = Deno.readDir("./bins/bin"); - -let found = false; -for await (const entry of dirs) { - if (entry.name.includes("deno-test-bin")) { - found = true; - } -} -if (!found) { - throw new Error("Failed to find test bin"); -} diff --git a/tests/specs/install/no_future_install_global/install.out b/tests/specs/install/no_future_install_global/install.out deleted file mode 100644 index b1933f536..000000000 --- a/tests/specs/install/no_future_install_global/install.out +++ /dev/null @@ -1,6 +0,0 @@ -⚠️ `deno install` behavior will change in Deno 2. To preserve the current behavior use the `-g` or `--global` flag. -Download http://localhost:4260/@denotest/esm-basic -Download http://localhost:4260/@denotest/esm-basic/1.0.0.tgz -[# there shouldn't be a line saying it initialized the node_modules folder here because this is a global install] -✅ Successfully installed deno-test-bin[WILDCARD] -[WILDCARD] diff --git a/tests/specs/install/no_future_install_global/pkg/main.js b/tests/specs/install/no_future_install_global/pkg/main.js deleted file mode 100644 index 6268d7136..000000000 --- a/tests/specs/install/no_future_install_global/pkg/main.js +++ /dev/null @@ -1,3 +0,0 @@ -import { setValue } from "npm:@denotest/esm-basic"; - -setValue(5); diff --git a/tests/specs/install/no_future_install_global/pkg/package.json b/tests/specs/install/no_future_install_global/pkg/package.json deleted file mode 100644 index 9f465ad50..000000000 --- a/tests/specs/install/no_future_install_global/pkg/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "deno-test-bin", - "dependencies": { - "@denotest/esm-basic": "*" - } -} diff --git a/tests/specs/lockfile/frozen_lockfile/__test__.jsonc b/tests/specs/lockfile/frozen_lockfile/__test__.jsonc index 0ac69c6bd..0af7363eb 100644 --- a/tests/specs/lockfile/frozen_lockfile/__test__.jsonc +++ b/tests/specs/lockfile/frozen_lockfile/__test__.jsonc @@ -1,5 +1,7 @@ { "tempDir": true, + // TODO(2.0): re-enable after DENO_FUTURE=1 by default lands + "ignore": true, "tests": { "error_with_new_npm_dep": { "steps": [ diff --git a/tests/specs/lockfile/only_package_json/__test__.jsonc b/tests/specs/lockfile/only_package_json/__test__.jsonc index 6b28a7a92..5d79d7a87 100644 --- a/tests/specs/lockfile/only_package_json/__test__.jsonc +++ b/tests/specs/lockfile/only_package_json/__test__.jsonc @@ -1,5 +1,7 @@ { "tempDir": true, + // TODO(2.0): re-enable after DENO_FUTURE=1 by default lands + "ignore": true, "steps": [ { "args": "cache index.js", diff --git a/tests/specs/npm/adding_npm_dep_in_dynamic_import/deno.json b/tests/specs/npm/adding_npm_dep_in_dynamic_import/deno.json index 38bbf89a0..27f0b80e7 100644 --- a/tests/specs/npm/adding_npm_dep_in_dynamic_import/deno.json +++ b/tests/specs/npm/adding_npm_dep_in_dynamic_import/deno.json @@ -1,5 +1,5 @@ { - "nodeModulesDir": true, + "nodeModules": "local-auto", "tasks": { "cat": "cat", "rm_node_modules": "rm -rf node_modules" diff --git a/tests/specs/npm/check_prefers_non_types_node_pkg/__test__.jsonc b/tests/specs/npm/check_prefers_non_types_node_pkg/__test__.jsonc index 8c4d0fb20..fc67a5de4 100644 --- a/tests/specs/npm/check_prefers_non_types_node_pkg/__test__.jsonc +++ b/tests/specs/npm/check_prefers_non_types_node_pkg/__test__.jsonc @@ -15,12 +15,12 @@ }] }, "auto_install": { - "args": "check --node-modules-dir=true --quiet main.ts", + "args": "check --node-modules=local-auto --quiet main.ts", "exitCode": 1, "output": "expected.out" }, "global_folder": { - "args": "check --node-modules-dir=false --quiet main.ts", + "args": "check --node-modules=global-auto --quiet main.ts", "exitCode": 1, "output": "expected.out" } diff --git a/tests/specs/npm/check_types_in_types_pkg/__test__.jsonc b/tests/specs/npm/check_types_in_types_pkg/__test__.jsonc index 7b7a429f4..9fff27348 100644 --- a/tests/specs/npm/check_types_in_types_pkg/__test__.jsonc +++ b/tests/specs/npm/check_types_in_types_pkg/__test__.jsonc @@ -15,12 +15,12 @@ }] }, "auto_install": { - "args": "check --node-modules-dir=true --quiet main_auto_install.ts", + "args": "check --node-modules=local-auto --quiet main_auto_install.ts", "exitCode": 1, "output": "expected.out" }, "global_folder": { - "args": "check --node-modules-dir=false --quiet main_auto_install.ts", + "args": "check --node-modules=global-auto --quiet main_auto_install.ts", "exitCode": 1, "output": "expected.out" } diff --git a/tests/specs/npm/conditional_exports_node_modules_dir/__test__.jsonc b/tests/specs/npm/conditional_exports_node_modules_dir/__test__.jsonc index 757e1c4e0..84e26dd47 100644 --- a/tests/specs/npm/conditional_exports_node_modules_dir/__test__.jsonc +++ b/tests/specs/npm/conditional_exports_node_modules_dir/__test__.jsonc @@ -1,5 +1,5 @@ { "tempDir": true, - "args": "run --allow-read --node-modules-dir main.js", + "args": "run --allow-read --node-modules=local-auto main.js", "output": "main.out" } diff --git a/tests/specs/npm/lifecycle_scripts/__test__.jsonc b/tests/specs/npm/lifecycle_scripts/__test__.jsonc index c62bc47b4..3d322504c 100644 --- a/tests/specs/npm/lifecycle_scripts/__test__.jsonc +++ b/tests/specs/npm/lifecycle_scripts/__test__.jsonc @@ -135,7 +135,7 @@ "output": "" }, { - "args": "cache --allow-scripts --node-modules-dir=true no_deno_json.js", + "args": "cache --allow-scripts --node-modules=local-auto no_deno_json.js", "output": "no_deno_json.out" } ] @@ -148,7 +148,7 @@ "output": "" }, { - "args": "cache --allow-scripts --node-modules-dir=true conflicting_bin.js", + "args": "cache --allow-scripts --node-modules=local-auto conflicting_bin.js", "output": "conflicting_bin.out" } ] diff --git a/tests/specs/npm/lifecycle_scripts/all_lifecycles_not_run.out b/tests/specs/npm/lifecycle_scripts/all_lifecycles_not_run.out index 079267414..7d432ead9 100644 --- a/tests/specs/npm/lifecycle_scripts/all_lifecycles_not_run.out +++ b/tests/specs/npm/lifecycle_scripts/all_lifecycles_not_run.out @@ -7,6 +7,6 @@ Initialize @denotest/node-lifecycle-scripts@1.0.0 Initialize @denotest/bin@1.0.0 [UNORDERED_END] warning: Packages contained npm lifecycle scripts (preinstall/install/postinstall) that were not executed. - This may cause the packages to not work correctly. To run them, use the `--allow-scripts` flag with `deno cache` - (e.g. `deno cache --allow-scripts=pkg1,pkg2 <entrypoint>`): + This may cause the packages to not work correctly. To run them, use the `--allow-scripts` flag with `deno cache` or `deno install` + (e.g. `deno cache --allow-scripts=pkg1,pkg2 <entrypoint>` or `deno install --allow-scripts=pkg1,pkg2`): npm:@denotest/node-lifecycle-scripts@1.0.0 diff --git a/tests/specs/npm/lifecycle_scripts/deno.json b/tests/specs/npm/lifecycle_scripts/deno.json index 176354f98..b2edaa035 100644 --- a/tests/specs/npm/lifecycle_scripts/deno.json +++ b/tests/specs/npm/lifecycle_scripts/deno.json @@ -1,3 +1,3 @@ { - "nodeModulesDir": true + "nodeModules": "local-auto" } diff --git a/tests/specs/npm/lifecycle_scripts/node_gyp_not_run.out b/tests/specs/npm/lifecycle_scripts/node_gyp_not_run.out index c718e7c86..a6315b0ef 100644 --- a/tests/specs/npm/lifecycle_scripts/node_gyp_not_run.out +++ b/tests/specs/npm/lifecycle_scripts/node_gyp_not_run.out @@ -2,8 +2,8 @@ Download http://localhost:4260/@denotest/node-addon Download http://localhost:4260/node-gyp [WILDCARD] warning: Packages contained npm lifecycle scripts (preinstall/install/postinstall) that were not executed. - This may cause the packages to not work correctly. To run them, use the `--allow-scripts` flag with `deno cache` - (e.g. `deno cache --allow-scripts=pkg1,pkg2 <entrypoint>`): + This may cause the packages to not work correctly. To run them, use the `--allow-scripts` flag with `deno cache` or `deno install` + (e.g. `deno cache --allow-scripts=pkg1,pkg2 <entrypoint>` or `deno install --allow-scripts=pkg1,pkg2`): npm:@denotest/node-addon@1.0.0 error: Uncaught (in promise) Error: Cannot find module './build/Release/node_addon' [WILDCARD] diff --git a/tests/specs/npm/lifecycle_scripts/only_warns_first1.out b/tests/specs/npm/lifecycle_scripts/only_warns_first1.out index 6ebf96028..0d52ae729 100644 --- a/tests/specs/npm/lifecycle_scripts/only_warns_first1.out +++ b/tests/specs/npm/lifecycle_scripts/only_warns_first1.out @@ -7,8 +7,8 @@ Initialize @denotest/node-lifecycle-scripts@1.0.0 Initialize @denotest/bin@1.0.0 [UNORDERED_END] warning: Packages contained npm lifecycle scripts (preinstall/install/postinstall) that were not executed. - This may cause the packages to not work correctly. To run them, use the `--allow-scripts` flag with `deno cache` - (e.g. `deno cache --allow-scripts=pkg1,pkg2 <entrypoint>`): + This may cause the packages to not work correctly. To run them, use the `--allow-scripts` flag with `deno cache` or `deno install` + (e.g. `deno cache --allow-scripts=pkg1,pkg2 <entrypoint>` or `deno install --allow-scripts=pkg1,pkg2`): npm:@denotest/node-lifecycle-scripts@1.0.0 error: Uncaught SyntaxError: The requested module 'npm:@denotest/node-lifecycle-scripts' does not provide an export named 'value' [WILDCARD] diff --git a/tests/specs/npm/local_dir_no_duplicate_resolution/deno.json b/tests/specs/npm/local_dir_no_duplicate_resolution/deno.json index ae2f9c1ae..7a51e3d29 100644 --- a/tests/specs/npm/local_dir_no_duplicate_resolution/deno.json +++ b/tests/specs/npm/local_dir_no_duplicate_resolution/deno.json @@ -1,5 +1,5 @@ { - "nodeModulesDir": true, + "nodeModules": "local-auto", "imports": { "preact": "npm:preact", "preact-render-to-string": "npm:preact-render-to-string" diff --git a/tests/specs/npm/lossy_utf8_script_from_cjs/__test__.jsonc b/tests/specs/npm/lossy_utf8_script_from_cjs/__test__.jsonc index c8d353de0..cfa5a949e 100644 --- a/tests/specs/npm/lossy_utf8_script_from_cjs/__test__.jsonc +++ b/tests/specs/npm/lossy_utf8_script_from_cjs/__test__.jsonc @@ -1,5 +1,5 @@ { - "args": "run --node-modules-dir --allow-read main.mjs", + "args": "run --node-modules=local-auto --allow-read main.mjs", "output": "main.out", "exitCode": 0, "tempDir": true diff --git a/tests/specs/npm/npmrc/__test__.jsonc b/tests/specs/npm/npmrc/__test__.jsonc index 106842d2b..6378566ae 100644 --- a/tests/specs/npm/npmrc/__test__.jsonc +++ b/tests/specs/npm/npmrc/__test__.jsonc @@ -14,7 +14,7 @@ }] }, "run_node_modules_dir": { - "args": "run --node-modules-dir -A --quiet main.js", + "args": "run --node-modules=local-auto -A --quiet main.js", "output": "main.out" } } diff --git a/tests/specs/npm/npmrc_tarball_other_server/__test__.jsonc b/tests/specs/npm/npmrc_tarball_other_server/__test__.jsonc index dfb311c1e..b20ca9046 100644 --- a/tests/specs/npm/npmrc_tarball_other_server/__test__.jsonc +++ b/tests/specs/npm/npmrc_tarball_other_server/__test__.jsonc @@ -3,13 +3,13 @@ "tests": { "auth_success": { "cwd": "success", - "args": "run --node-modules-dir -A main.js", + "args": "run --node-modules=local-auto -A main.js", "output": "success/main.out", "exitCode": 1 }, "auth_fail": { "cwd": "fail", - "args": "run --node-modules-dir -A main.js", + "args": "run --node-modules=local-auto -A main.js", "output": "fail/main.out", "exitCode": 1 } diff --git a/tests/specs/npm/workspace_basic/__test__.jsonc b/tests/specs/npm/workspace_basic/__test__.jsonc index 7415a9aeb..768c193fc 100644 --- a/tests/specs/npm/workspace_basic/__test__.jsonc +++ b/tests/specs/npm/workspace_basic/__test__.jsonc @@ -2,15 +2,15 @@ "tempDir": true, "tests": { "global_cache": { - "args": "run --node-modules-dir=false b/main.ts", + "args": "run --node-modules=global-auto b/main.ts", "output": "b/main_global_cache.out" }, "global_cache_bare_specifier_not_in_pkg": { - "args": "run --node-modules-dir=false main.ts", + "args": "run --node-modules=global-auto main.ts", "output": "main.out" }, "node_modules_dir": { - "args": "run --node-modules-dir=true b/main.ts", + "args": "run --node-modules=local-auto b/main.ts", "output": "b/main_node_modules_dir.out" }, "byonm": { @@ -26,11 +26,15 @@ }] }, "exports_sub_path_not_exists": { + // TODO(2.0): this test appears legitimately broken + "ignore": true, "args": "run b/exports-sub-path-not-exists.ts", "output": "b/exports-sub-path-not-exists.out", "exitCode": 1 }, "no_exports_sub_path_not_exists": { + // TODO(2.0): this test appears legitimately broken + "ignore": true, "args": "run b/no-exports-sub-path-not-exists.ts", "output": "b/no-exports-sub-path-not-exists.out", "exitCode": 1 diff --git a/tests/specs/npm/workspace_sub_deno_json/__test__.jsonc b/tests/specs/npm/workspace_sub_deno_json/__test__.jsonc index c96e91abf..dbf35dcb0 100644 --- a/tests/specs/npm/workspace_sub_deno_json/__test__.jsonc +++ b/tests/specs/npm/workspace_sub_deno_json/__test__.jsonc @@ -2,10 +2,14 @@ "tempDir": true, "tests": { "member": { + // TODO(2.0): this test appears legitimately broken + "ignore": true, "args": "run --allow-read member/main.ts", "output": "member.out" }, "member_with_deno_json": { + // TODO(2.0): this test appears legitimately broken + "ignore": true, "args": "run --allow-read member_with_deno_json/main.ts", "output": "member.out" }, diff --git a/tests/specs/npm/workspace_sub_deno_json/member_with_deno_json/deno.jsonc b/tests/specs/npm/workspace_sub_deno_json/member_with_deno_json/deno.jsonc index 99bd145fe..e246bc65d 100644 --- a/tests/specs/npm/workspace_sub_deno_json/member_with_deno_json/deno.jsonc +++ b/tests/specs/npm/workspace_sub_deno_json/member_with_deno_json/deno.jsonc @@ -1,4 +1,4 @@ { // will cause a warning - "nodeModulesDir": true + "nodeModules": "local-auto" } diff --git a/tests/specs/npm/workspace_sub_deno_json/non_member/deno.json b/tests/specs/npm/workspace_sub_deno_json/non_member/deno.json index 176354f98..b2edaa035 100644 --- a/tests/specs/npm/workspace_sub_deno_json/non_member/deno.json +++ b/tests/specs/npm/workspace_sub_deno_json/non_member/deno.json @@ -1,3 +1,3 @@ { - "nodeModulesDir": true + "nodeModules": "local-auto" } diff --git a/tests/specs/npm/workspace_wildcards/__test__.jsonc b/tests/specs/npm/workspace_wildcards/__test__.jsonc index eeb1629ec..cefc307a6 100644 --- a/tests/specs/npm/workspace_wildcards/__test__.jsonc +++ b/tests/specs/npm/workspace_wildcards/__test__.jsonc @@ -1,4 +1,4 @@ { - "args": "run --node-modules-dir=false main.ts", + "args": "run --node-modules=global-auto main.ts", "output": "main.out" } diff --git a/tests/specs/publish/npm_workspace_jsr_pkg_with_npm_dep/__test__.jsonc b/tests/specs/publish/npm_workspace_jsr_pkg_with_npm_dep/__test__.jsonc index 8819e630d..cee2fe12d 100644 --- a/tests/specs/publish/npm_workspace_jsr_pkg_with_npm_dep/__test__.jsonc +++ b/tests/specs/publish/npm_workspace_jsr_pkg_with_npm_dep/__test__.jsonc @@ -1,4 +1,7 @@ { + // TODO(2.0): these tests are actually broken now, some code needs + // to be updated to make them work + "ignore": true, "tests": { "dep_and_workspace_dep": { "args": "publish --dry-run --no-check --log-level=debug", diff --git a/tests/specs/publish/package_json/deno.json b/tests/specs/publish/package_json/deno.json index 6e2826ef5..00e8db5a8 100644 --- a/tests/specs/publish/package_json/deno.json +++ b/tests/specs/publish/package_json/deno.json @@ -4,5 +4,5 @@ "exports": { ".": "./mod.ts" }, - "nodeModulesDir": false + "nodeModules": "global-auto" } diff --git a/tests/specs/run/no_deno_json/__test__.jsonc b/tests/specs/run/no_deno_json/__test__.jsonc index 5da0209b9..c8e32fa19 100644 --- a/tests/specs/run/no_deno_json/__test__.jsonc +++ b/tests/specs/run/no_deno_json/__test__.jsonc @@ -29,12 +29,16 @@ "cwd": "code" }, "auto_discovered": { + // TODO(2.0): most likely needs to change output to not expect auto-install + "ignore": true, // auto-discovered node_modules relative package.json "args": "run -A main.js", "output": "code/sub_dir/main.out", "cwd": "code/sub_dir" }, "auto_discovered_arg": { + // TODO(2.0): most likely needs to change output to not expect auto-install + "ignore": true, // auto-discovered for local script arg "args": "run -L debug -A code/main.ts", // notice this is not in the sub dir "output": "main.out" diff --git a/tests/specs/run/package_json/invalid_value/__test__.jsonc b/tests/specs/run/package_json/invalid_value/__test__.jsonc index c960dd302..7f85713cb 100644 --- a/tests/specs/run/package_json/invalid_value/__test__.jsonc +++ b/tests/specs/run/package_json/invalid_value/__test__.jsonc @@ -1,5 +1,7 @@ { "tempDir": true, + // TODO(2.0): update the tests, should probably run install first + "ignore": true, "tests": { // should run fine when not referencing a failing dep entry "run_ok": { diff --git a/tests/specs/run/ts_import_assertions/__test__.jsonc b/tests/specs/run/ts_import_assertions/__test__.jsonc index 5d8110ae2..6e3ffb044 100644 --- a/tests/specs/run/ts_import_assertions/__test__.jsonc +++ b/tests/specs/run/ts_import_assertions/__test__.jsonc @@ -1,6 +1,8 @@ { "tests": { "assertion": { + // TODO(2.0): disable import assertion support in TS. + "ignore": true, "steps": [{ "args": "run assertion.ts", "exitCode": 1, diff --git a/tests/specs/run/workspaces/explicit_import_map/__test__.jsonc b/tests/specs/run/workspaces/explicit_import_map/__test__.jsonc index 2bd0d3bcc..b13fde73a 100644 --- a/tests/specs/run/workspaces/explicit_import_map/__test__.jsonc +++ b/tests/specs/run/workspaces/explicit_import_map/__test__.jsonc @@ -1,4 +1,6 @@ { + // TODO(2.0): update the test, should probably call install first + "ignore": true, "args": "run -A --import-map=./import_map.json main.ts", "output": "main.out", "tempDir": true diff --git a/tests/specs/task/bin_package/deno.json b/tests/specs/task/bin_package/deno.json index 176354f98..b2edaa035 100644 --- a/tests/specs/task/bin_package/deno.json +++ b/tests/specs/task/bin_package/deno.json @@ -1,3 +1,3 @@ { - "nodeModulesDir": true + "nodeModules": "local-auto" } diff --git a/tests/specs/task/node_modules_dir_false/deno.json b/tests/specs/task/node_modules_dir_false/deno.json index cacff662c..c11dfbbba 100644 --- a/tests/specs/task/node_modules_dir_false/deno.json +++ b/tests/specs/task/node_modules_dir_false/deno.json @@ -1,5 +1,5 @@ { - "nodeModulesDir": true, + "nodeModules": "local-auto", "tasks": { "repro": "echo hi" } diff --git a/tests/specs/task/npx_installed_pkg_non_byonm/deno.jsonc b/tests/specs/task/npx_installed_pkg_non_byonm/deno.jsonc index 00303820b..a21a7745b 100644 --- a/tests/specs/task/npx_installed_pkg_non_byonm/deno.jsonc +++ b/tests/specs/task/npx_installed_pkg_non_byonm/deno.jsonc @@ -1,6 +1,6 @@ { // not byonm - "nodeModulesDir": true, + "nodeModules": "local-auto", "tasks": { "say": "npx cowsay moo" } |