From 804f61bcf5eeaf0b21825c04a4ed84ba2aed000f Mon Sep 17 00:00:00 2001 From: Ariya Hidayat Date: Mon, 8 Sep 2014 07:51:03 -0700 Subject: [PATCH] Speed-up the tests: default auto-exit timeout is set to 1 second. This reduces the total test duration from 72 seconds to 54 seconds. https://github.com/ariya/phantomjs/issues/12439 --- test/assert.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/assert.js b/test/assert.js index d6469a74..5d1221f0 100644 --- a/test/assert.js +++ b/test/assert.js @@ -1,6 +1,6 @@ // After the given timeout (in seconds), the script automatically terminates. -var timeout = 2; +var timeout = 1; var total = 0;