mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
9e4ba982df
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
26 lines
692 B
Rust
26 lines
692 B
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
use test_util as util;
|
|
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/test.ts"))
|
|
.spawn()
|
|
.expect("failed to spawn script");
|
|
|
|
let status = deno.wait().expect("failed to wait for the child process");
|
|
assert_eq!(Some(0), status.code());
|
|
assert!(status.success());
|
|
}
|