mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 04:51:22 +00:00
test: fix node_compat_test (#23446)
It's not clear to me how these tests worked correctly on CI, but they were failing hard locally because of two problems: - missing env var that tests URL for fake npm registry - trying to run a directory that contains native Node.js tests that require a special harness
This commit is contained in:
parent
7b02f2aba6
commit
9e4ba982df
@ -5,15 +5,18 @@ use util::deno_config_path;
|
||||
|
||||
#[test]
|
||||
fn node_compat_tests() {
|
||||
let _server = util::http_server();
|
||||
|
||||
let mut deno = util::deno_cmd()
|
||||
.current_dir(util::root_path())
|
||||
.envs(util::env_vars_for_npm_tests())
|
||||
.arg("test")
|
||||
.arg("--config")
|
||||
.arg(deno_config_path())
|
||||
.arg("--no-lock")
|
||||
.arg("--unstable")
|
||||
.arg("-A")
|
||||
.arg(util::tests_path().join("node_compat"))
|
||||
.arg(util::tests_path().join("node_compat/test.ts"))
|
||||
.spawn()
|
||||
.expect("failed to spawn script");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user