mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Fix #13044: execute all QUnit modules in TestSwarm. Close gh-1074.
This commit is contained in:
parent
a270d638f8
commit
ca26d45395
8
grunt.js
8
grunt.js
@ -106,6 +106,11 @@ module.exports = function( grunt ) {
|
||||
qunit: {
|
||||
files: "test/index.html"
|
||||
},
|
||||
|
||||
testswarm: {
|
||||
tests: "ajax attributes callbacks core css data deferred dimensions effects event manipulation offset queue selector serialize support traversing Sizzle".split(" ")
|
||||
},
|
||||
|
||||
watch: {
|
||||
files: [
|
||||
"<config:lint.grunt>", "<config:lint.tests>",
|
||||
@ -113,6 +118,7 @@ module.exports = function( grunt ) {
|
||||
],
|
||||
tasks: "dev"
|
||||
},
|
||||
|
||||
uglify: {
|
||||
codegen: {
|
||||
ascii_only: true
|
||||
@ -137,7 +143,7 @@ module.exports = function( grunt ) {
|
||||
testUrls = [],
|
||||
pull = /PR-(\d+)/.exec( commit ),
|
||||
config = grunt.file.readJSON( configFile ).jquery,
|
||||
tests = "ajax attributes callbacks core css data deferred dimensions effects event manipulation offset queue serialize support traversing Sizzle".split(" ");
|
||||
tests = grunt.config([ this.name, "tests" ]);
|
||||
|
||||
if ( pull ) {
|
||||
jobName = "jQuery pull <a href='https://github.com/jquery/jquery/pull/" +
|
||||
|
@ -1,4 +1,4 @@
|
||||
module("selector - jQuery only", { teardown: moduleTeardown });
|
||||
module("selector", { teardown: moduleTeardown });
|
||||
|
||||
/**
|
||||
* This test page is for selector tests that require jQuery in order to do the selection
|
||||
|
Loading…
Reference in New Issue
Block a user