mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Deferred: Backwards-compatible standards interoperability
Fixes gh-1722
Closes gh-1996
(cherry picked from commit 555a50d340)
This commit is contained in:
20
build/tasks/promises-aplus-tests.js
Normal file
20
build/tasks/promises-aplus-tests.js
Normal file
@@ -0,0 +1,20 @@
|
||||
module.exports = function( grunt ) {
|
||||
|
||||
"use strict";
|
||||
|
||||
var spawn = require( "child_process" ).spawn;
|
||||
|
||||
grunt.registerTask( "promises-aplus-tests", function() {
|
||||
var done = this.async();
|
||||
spawn(
|
||||
"node",
|
||||
[
|
||||
"./node_modules/.bin/promises-aplus-tests",
|
||||
"test/promises-aplus-adapter.js"
|
||||
],
|
||||
{ stdio: "inherit" }
|
||||
).on( "close", function( code ) {
|
||||
done( code === 0 );
|
||||
});
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user