aboutsummaryrefslogtreecommitdiffstats
path: root/build/tasks/promises_aplus_tests.js
blob: 3e770a07966f42a862f86fa1a148676b534e4776 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"
		);
	} );
};