Skip to content

Commit 0aa0c26

Browse files
committed
fix(perf): increase default timeout for perf tests
1 parent 48125a8 commit 0aa0c26

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

protractor-perf-shared.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,13 @@ if (process.env.CLOUD_SECRET_PATH) {
1313
}
1414

1515
config.specs = ['dist/cjs/**/*_perf.js'];
16+
config.jasmineNodeOpts.defaultTimeoutInterval = 80000;
17+
1618
config.params = {
1719
benchmark: {
1820
// size of the sample to take
1921
sampleSize: 20,
20-
timeout: 20000,
22+
timeout: 60000,
2123
metrics: ['script', 'render', 'gcAmount', 'gcAmountInScript', 'gcTime'],
2224
// forces a gc after every run
2325
forceGc: false,

0 commit comments

Comments
 (0)