From 0aa0c268d6832fbbd1f029d1c7a80b34b81d9272 Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Fri, 16 Jan 2015 17:03:20 -0800 Subject: [PATCH] fix(perf): increase default timeout for perf tests --- protractor-perf-shared.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/protractor-perf-shared.js b/protractor-perf-shared.js index 17b6f9e53e..26982f326c 100644 --- a/protractor-perf-shared.js +++ b/protractor-perf-shared.js @@ -13,11 +13,13 @@ if (process.env.CLOUD_SECRET_PATH) { } config.specs = ['dist/cjs/**/*_perf.js']; +config.jasmineNodeOpts.defaultTimeoutInterval = 80000; + config.params = { benchmark: { // size of the sample to take sampleSize: 20, - timeout: 20000, + timeout: 60000, metrics: ['script', 'render', 'gcAmount', 'gcAmountInScript', 'gcTime'], // forces a gc after every run forceGc: false,