mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Build: increase timeout in Promises/A+ tests 10 times
The promises-aplus-tests sets up a default 200 ms Mocha timeout. This makes our tests randomly fail on Jenkins. 2 seconds will be safer. Closes gh-3791
This commit is contained in:
parent
781647b182
commit
81be78e380
@ -2,7 +2,8 @@ module.exports = function( grunt ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var spawnTest = require( "./lib/spawn_test.js" );
|
||||
var timeout = 2000,
|
||||
spawnTest = require( "./lib/spawn_test.js" );
|
||||
|
||||
grunt.registerTask( "promises_aplus_tests",
|
||||
[ "promises_aplus_tests:deferred", "promises_aplus_tests:when" ] );
|
||||
@ -10,14 +11,16 @@ module.exports = function( grunt ) {
|
||||
grunt.registerTask( "promises_aplus_tests:deferred", function() {
|
||||
spawnTest( this.async(),
|
||||
__dirname + "/../../node_modules/.bin/promises-aplus-tests" +
|
||||
" test/promises_aplus_adapters/deferred.js"
|
||||
" test/promises_aplus_adapters/deferred.js" +
|
||||
" --timeout " + timeout
|
||||
);
|
||||
} );
|
||||
|
||||
grunt.registerTask( "promises_aplus_tests:when", function() {
|
||||
spawnTest( this.async(),
|
||||
__dirname + "/../../node_modules/.bin/promises-aplus-tests" +
|
||||
" test/promises_aplus_adapters/when.js"
|
||||
" test/promises_aplus_adapters/when.js" +
|
||||
" --timeout " + timeout
|
||||
);
|
||||
} );
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user