summaryrefslogtreecommitdiff
path: root/cli/tests/std_tests.rs
diff options
context:
space:
mode:
authorSuguru Motegi <suguru.motegi@gmail.com>2020-02-24 13:37:15 -0800
committerGitHub <noreply@github.com>2020-02-24 16:37:15 -0500
commit79c6e052ed29b9b78c31f2e01da3b91f76b6a017 (patch)
tree8b69667d233fbf6841a55ec2d41bb9ae432e677e /cli/tests/std_tests.rs
parentf4fd433e1aa6c8c086c38df39c39bec23c56a29c (diff)
fix: createSecKey logic (#4063)
Diffstat (limited to 'cli/tests/std_tests.rs')
-rw-r--r--cli/tests/std_tests.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/tests/std_tests.rs b/cli/tests/std_tests.rs
index 7b7928f70..6ed5d2518 100644
--- a/cli/tests/std_tests.rs
+++ b/cli/tests/std_tests.rs
@@ -20,6 +20,7 @@ mod tests {
cwd.push("std");
let mut deno = deno_cmd
.current_dir(cwd) // note: std tests expect to run from "std" dir
+ .arg("--seed=86") // Some tests rely on specific random numbers.
.arg("-A")
// .arg("-Ldebug")
.arg("./testing/runner.ts")