Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-07-05 11:31:53 +0400
committermattab <matthieu.aubry@gmail.com>2014-07-05 11:31:53 +0400
commit526e5952838cde5163317bfe2dc4ffc9c551a6aa (patch)
tree5fb8b36f098ff203bac5db9d809f350f79028c38 /tests/javascript
parent080829b2660b0b598805996974783f153c22b5b9 (diff)
increase timer to avoid random JS test failure
Diffstat (limited to 'tests/javascript')
-rw-r--r--tests/javascript/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/javascript/index.php b/tests/javascript/index.php
index b242a9bf04..3a9b383362 100644
--- a/tests/javascript/index.php
+++ b/tests/javascript/index.php
@@ -856,7 +856,7 @@ function PiwikTest() {
tracker.hook.test._beforeUnloadHandler();
stopTime = new Date();
var msSinceStarted = (stopTime.getTime() - startTime.getTime());
- ok( msSinceStarted < 500, 'beforeUnloadHandler(): ' + msSinceStarted + ' was greater than 500 ' );
+ ok( msSinceStarted < 510, 'beforeUnloadHandler(): ' + msSinceStarted + ' was greater than 510 ' );
tracker.setLinkTrackingTimer(2000);
startTime = new Date();