mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
f47c6a8337
The main change is the new rule in `eslint-config-jquery`: `template-curly-spacing`. Closes gh-5347 Ref jquery/eslint-config-jquery#21 Ref gh-5348
33 lines
688 B
JavaScript
33 lines
688 B
JavaScript
"use strict";
|
|
|
|
const { spawn } = require( "child_process" );
|
|
const verifyNodeVersion = require( "./lib/verifyNodeVersion" );
|
|
const path = require( "path" );
|
|
const os = require( "os" );
|
|
|
|
if ( !verifyNodeVersion() ) {
|
|
return;
|
|
}
|
|
|
|
const command = path.resolve(
|
|
__dirname,
|
|
`../../node_modules/.bin/promises-aplus-tests${ os.platform() === "win32" ? ".cmd" : "" }`
|
|
);
|
|
const args = [ "--reporter", "dot", "--timeout", "2000" ];
|
|
const tests = [
|
|
"test/promises_aplus_adapters/deferred.cjs",
|
|
"test/promises_aplus_adapters/when.cjs"
|
|
];
|
|
|
|
async function runTests() {
|
|
tests.forEach( ( test ) => {
|
|
spawn(
|
|
command,
|
|
[ test ].concat( args ),
|
|
{ stdio: "inherit" }
|
|
);
|
|
} );
|
|
}
|
|
|
|
runTests();
|