Skip to content

Commit a51eec7

Browse files
committed
Tests: Make Karma browser timeout larger than the QUnit one
Since the default Karma browser no activity timeout was lower than the QUnit timeout, a single timing out test was interrupting the whole test run of a browser. The QUnit timeout is set to 1 minute so I set the Karma one to 2 minutes. Closes gh-4943 (cherry picked from commit 4fd6912)
1 parent 509eeb8 commit a51eec7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Gruntfile.js

+4
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,10 @@ module.exports = function( grunt ) {
214214
],
215215
reporters: [ "dots" ],
216216
autoWatch: false,
217+
218+
// 2 minutes; has to be longer than QUnit.config.testTimeout
219+
browserNoActivityTimeout: 120e3,
220+
217221
concurrency: 3,
218222
captureTimeout: 20 * 1000,
219223
singleRun: true

0 commit comments

Comments
 (0)