aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorOleg Gaidarenko <markelog@gmail.com>2016-06-11 10:30:12 +0300
committerOleg Gaidarenko <markelog@gmail.com>2016-06-11 10:39:51 +0300
commita4474c9a0025095f82d734a9d7230eace2f08ef8 (patch)
treee62f988ad38a32e9bb639bb28431f365386b0863 /build
parentf80ae67c53c0a4bfc95741ed39d7f9e498eaf02b (diff)
downloadjquery-a4474c9a0025095f82d734a9d7230eace2f08ef8.tar.gz
jquery-a4474c9a0025095f82d734a9d7230eace2f08ef8.zip
Tests: Move promise/A+ adapters for tests to dedicated folder
Diffstat (limited to 'build')
-rw-r--r--build/tasks/promises_aplus_tests.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/build/tasks/promises_aplus_tests.js b/build/tasks/promises_aplus_tests.js
index c4fb86d4c..a0118d1f0 100644
--- a/build/tasks/promises_aplus_tests.js
+++ b/build/tasks/promises_aplus_tests.js
@@ -5,19 +5,19 @@ module.exports = function( grunt ) {
var spawnTest = require( "./lib/spawn_test.js" );
grunt.registerTask( "promises_aplus_tests",
- [ "promises_aplus_tests_deferred", "promises_aplus_tests_when" ] );
+ [ "promises_aplus_tests:deferred", "promises_aplus_tests:when" ] );
- grunt.registerTask( "promises_aplus_tests_deferred", function() {
+ grunt.registerTask( "promises_aplus_tests:deferred", function() {
spawnTest( this.async(),
"./node_modules/.bin/promises-aplus-tests",
- "test/promises_aplus_adapter_deferred.js"
+ "test/promises_aplus_adapters/deferred.js"
);
} );
- grunt.registerTask( "promises_aplus_tests_when", function() {
+ grunt.registerTask( "promises_aplus_tests:when", function() {
spawnTest( this.async(),
"./node_modules/.bin/promises-aplus-tests",
- "test/promises_aplus_adapter_when.js"
+ "test/promises_aplus_adapters/when.js"
);
} );
};