diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-03-19 14:49:06 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-19 14:49:06 +0100 |
| commit | 74c37e759ac03267975309c1425223289ebc925f (patch) | |
| tree | eb720d4d12a5427dcff0fba07bab8b4ca8d4c7c3 /cli | |
| parent | 8de4a05f2a93f194f71b959f4d47a1b4fc61aa41 (diff) | |
remove std/testing/runner.ts, use deno test for std/ tests (#4397)
This introduces BREAKING CHANGE by removing "std/testing/runner.ts".
Std tests are now run using "deno test" subcommand.
Diffstat (limited to 'cli')
| -rw-r--r-- | cli/tests/std_tests.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/tests/std_tests.rs b/cli/tests/std_tests.rs index bb14f9c3a..32906c2fa 100644 --- a/cli/tests/std_tests.rs +++ b/cli/tests/std_tests.rs @@ -17,11 +17,10 @@ mod tests { cwd.push("std"); let mut deno = deno_cmd .current_dir(cwd) // note: std tests expect to run from "std" dir + .arg("test") .arg("--seed=86") // Some tests rely on specific random numbers. .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"); |
