0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/std_tests.rs
Bartek Iwańczuk 34ed16ed3a run std test with cargo test (#3344)
Removes three CI jobs
2019-11-15 13:31:53 -05:00

32 lines
937 B
Rust

// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// TODO: fix tests in debug mode
// Runs only on release build
#[cfg(not(debug_assertions))]
mod tests {
extern crate lazy_static;
extern crate tempfile;
use deno_cli::test_util::*;
use std::process::Command;
use tempfile::TempDir;
#[test]
fn std_tests() {
let dir = TempDir::new().expect("tempdir fail");
let mut deno_cmd = Command::new(deno_exe_path());
deno_cmd.env("DENO_DIR", dir.path());
let mut cwd = root_path();
cwd.push("std");
let mut deno = deno_cmd
.current_dir(cwd) // note: std tests expect to run from "std" dir
.arg("-A")
// .arg("-Ldebug")
.arg("./testing/runner.ts")
.arg("--exclude=testing/testdata")
.spawn()
.expect("failed to spawn script");
let status = deno.wait().expect("failed to wait for the child process");
assert!(status.success());
}
}