mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
14 lines
288 B
JavaScript
14 lines
288 B
JavaScript
|
module.exports = function( grunt ) {
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
var spawnTest = require( "./lib/spawn_test.js" );
|
||
|
|
||
|
grunt.registerTask( "promises_aplus_tests", function() {
|
||
|
spawnTest( this.async(),
|
||
|
"./node_modules/.bin/promises-aplus-tests",
|
||
|
"test/promises_aplus_adapter.js"
|
||
|
);
|
||
|
} );
|
||
|
};
|