diff options
author | Corey Frang <gnarf@gnarf.net> | 2015-05-19 17:48:42 -0400 |
---|---|---|
committer | Corey Frang <gnarf@gnarf.net> | 2015-06-26 20:06:03 -0400 |
commit | b3b2d6c3dd51fbdc69e1942e9af75cc99a1834c2 (patch) | |
tree | ebd6d168bf16e1cadf77e4b97b8c74997cb5bcde /Gruntfile.js | |
parent | cdaed15c7ea1bbfdde5a5bea691c583ce7961526 (diff) | |
download | jquery-b3b2d6c3dd51fbdc69e1942e9af75cc99a1834c2.tar.gz jquery-b3b2d6c3dd51fbdc69e1942e9af75cc99a1834c2.zip |
Effects: Adding unit tests for jQuery.Animation
Closes gh-2326
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 8c88370e4..1a6bdac1a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -103,14 +103,15 @@ module.exports = function( grunt ) { src: "src/**/*.js", gruntfile: "Gruntfile.js", - // Right now, check only test helpers - test: [ "test/data/testrunner.js", "test/unit/tween.js" ], + // Check parts of tests that pass + test: [ "test/data/testrunner.js", "test/unit/animation.js", "test/unit/tween.js" ], release: [ "build/*.js", "!build/release-notes.js" ], tasks: "build/tasks/*.js" }, testswarm: { tests: [ "ajax", + "animation", "attributes", "callbacks", "core", |