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:12:42 -0400 |
commit | 0ff805772ad046ff1e9ecf1f9958408ce0cfcfcd (patch) | |
tree | 31d37683dfca18588b0d663cdde38560f35f81dc /Gruntfile.js | |
parent | 6b10f9d7e9fb6d062d2bbda49196544cd059b05c (diff) | |
download | jquery-0ff805772ad046ff1e9ecf1f9958408ce0cfcfcd.tar.gz jquery-0ff805772ad046ff1e9ecf1f9958408ce0cfcfcd.zip |
Effects: Adding unit tests for jQuery.Animation
Closes gh-2340
(cherry picked from commit b3b2d6c3dd51fbdc69e1942e9af75cc99a1834c2)
Conflicts:
src/effects.js
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 6bba47c3f..4108a1f18 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -90,14 +90,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", |