Default to running tests in random order

[Finishes #109197518]
This commit is contained in:
Steve Gravrock
2017-10-27 08:46:24 -07:00
parent ea3cf14ef8
commit e31db20ec7
8 changed files with 26 additions and 7 deletions

View File

@@ -58,7 +58,10 @@
env.throwOnExpectationFailure(throwingExpectationFailures);
var random = queryString.getParam("random");
env.randomizeTests(random);
if (random !== undefined) {
env.randomizeTests(random);
}
var seed = queryString.getParam("seed");
if (seed) {