Skip to content

Commit 4fd6912

Browse files
authored
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
1 parent 9735edd commit 4fd6912

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
@@ -232,6 +232,10 @@ module.exports = function( grunt ) {
232232
],
233233
reporters: [ "dots" ],
234234
autoWatch: false,
235+
236+
// 2 minutes; has to be longer than QUnit.config.testTimeout
237+
browserNoActivityTimeout: 120e3,
238+
235239
concurrency: 3,
236240
captureTimeout: 20 * 1000,
237241
singleRun: true

0 commit comments

Comments
 (0)