mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
0f780ba7cc
This commit fixes unit tests for the following builds: 1. The no-deprecated build: `custom:-deprecated` 2. The current slim build: `custom:-ajax,-effects` 3. The future (#4553) slim build: `custom:-ajax,-callbacks,-deferred,-effects` It also adds separate Travis jobs for the no-deprecated & slim builds. Closes gh-4577
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
"use strict";
|
|
|
|
module.exports = ( grunt ) => {
|
|
const fs = require( "fs" );
|
|
const spawnTest = require( "./lib/spawn_test.js" );
|
|
const testsDir = "./test/node_smoke_tests/";
|
|
const nodeSmokeTests = [];
|
|
|
|
// Fire up all tests defined in test/node_smoke_tests/*.js in spawned sub-processes.
|
|
// All the files under test/node_smoke_tests/*.js are supposed to exit with 0 code
|
|
// on success or another one on failure. Spawning in sub-processes is
|
|
// important so that the tests & the main process don't interfere with
|
|
// each other, e.g. so that they don't share the require cache.
|
|
|
|
fs.readdirSync( testsDir )
|
|
.filter( ( testFilePath ) =>
|
|
fs.statSync( testsDir + testFilePath ).isFile() &&
|
|
/\.js$/.test( testFilePath )
|
|
)
|
|
.forEach( ( testFilePath ) => {
|
|
const taskName = `node_${ testFilePath.replace( /\.js$/, "" ) }`;
|
|
|
|
grunt.registerTask( taskName, function() {
|
|
spawnTest( this.async(), `node "test/node_smoke_tests/${ testFilePath }"` );
|
|
} );
|
|
|
|
nodeSmokeTests.push( taskName );
|
|
} );
|
|
|
|
grunt.registerTask( "node_smoke_tests", nodeSmokeTests );
|
|
};
|