mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
chore: update test_util/std/ submodule (#15657)
This commit is contained in:
parent
829bbad13f
commit
ad98c9fdd1
2 changed files with 7 additions and 6 deletions
|
@ -9,7 +9,7 @@ use util::http_server;
|
||||||
// NOTE: See how to make test npm packages at ../testdata/npm/README.md
|
// NOTE: See how to make test npm packages at ../testdata/npm/README.md
|
||||||
|
|
||||||
itest!(esm_module {
|
itest!(esm_module {
|
||||||
args: "run --allow-read --unstable npm/esm/main.js",
|
args: "run --allow-read --allow-env --unstable npm/esm/main.js",
|
||||||
output: "npm/esm/main.out",
|
output: "npm/esm/main.out",
|
||||||
envs: env_vars(),
|
envs: env_vars(),
|
||||||
http_server: true,
|
http_server: true,
|
||||||
|
@ -27,14 +27,14 @@ itest!(esm_module_eval {
|
||||||
});
|
});
|
||||||
|
|
||||||
itest!(esm_module_deno_test {
|
itest!(esm_module_deno_test {
|
||||||
args: "test --allow-read --unstable npm/esm/test.js",
|
args: "test --allow-read --allow-env --unstable npm/esm/test.js",
|
||||||
output: "npm/esm/test.out",
|
output: "npm/esm/test.out",
|
||||||
envs: env_vars(),
|
envs: env_vars(),
|
||||||
http_server: true,
|
http_server: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
itest!(cjs_with_deps {
|
itest!(cjs_with_deps {
|
||||||
args: "run --allow-read --unstable npm/cjs_with_deps/main.js",
|
args: "run --allow-read --allow-env --unstable npm/cjs_with_deps/main.js",
|
||||||
output: "npm/cjs_with_deps/main.out",
|
output: "npm/cjs_with_deps/main.out",
|
||||||
envs: env_vars(),
|
envs: env_vars(),
|
||||||
http_server: true,
|
http_server: true,
|
||||||
|
@ -69,7 +69,7 @@ itest!(compare_globals {
|
||||||
});
|
});
|
||||||
|
|
||||||
itest!(dynamic_import {
|
itest!(dynamic_import {
|
||||||
args: "run --allow-read --unstable npm/dynamic_import/main.ts",
|
args: "run --allow-read --allow-env --unstable npm/dynamic_import/main.ts",
|
||||||
output: "npm/dynamic_import/main.out",
|
output: "npm/dynamic_import/main.out",
|
||||||
envs: env_vars(),
|
envs: env_vars(),
|
||||||
http_server: true,
|
http_server: true,
|
||||||
|
@ -90,7 +90,7 @@ itest!(no_unstable {
|
||||||
});
|
});
|
||||||
|
|
||||||
itest!(import_map {
|
itest!(import_map {
|
||||||
args: "run --allow-read --unstable --import-map npm/import_map/import_map.json npm/import_map/main.js",
|
args: "run --allow-read --allow-env --unstable --import-map npm/import_map/import_map.json npm/import_map/main.js",
|
||||||
output: "npm/import_map/main.out",
|
output: "npm/import_map/main.out",
|
||||||
envs: env_vars(),
|
envs: env_vars(),
|
||||||
http_server: true,
|
http_server: true,
|
||||||
|
@ -111,6 +111,7 @@ fn parallel_downloading() {
|
||||||
"run",
|
"run",
|
||||||
"--allow-read",
|
"--allow-read",
|
||||||
"--unstable",
|
"--unstable",
|
||||||
|
"--allow-env",
|
||||||
"npm/cjs_with_deps/main.js",
|
"npm/cjs_with_deps/main.js",
|
||||||
],
|
],
|
||||||
None,
|
None,
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit ec11374217b94e8d0ca604e669faabe5ade5d9a4
|
Subproject commit 28956f795762e8dd9b6213687ce32665319fa98a
|
Loading…
Reference in a new issue