diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-07-30 00:54:00 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-09-08 18:03:49 +0200 |
commit | 2c7e9c934971500a746d012c529e13ec0b560a83 (patch) | |
tree | 474b50d6ac2a343743c40acdf3e5ec440f494690 /Gruntfile.js | |
parent | dbb2daa8c3a458e3525d310440f4365548edc138 (diff) | |
download | jquery-2c7e9c934971500a746d012c529e13ec0b560a83.tar.gz jquery-2c7e9c934971500a746d012c529e13ec0b560a83.zip |
Tests: Add simple tests for Android 2.3
Fixes gh-2505
Closes gh-2509
Refs gh-2483
Diffstat (limited to 'Gruntfile.js')
-rw-r--r-- | Gruntfile.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index 97289a0ac..143c6631a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -128,6 +128,7 @@ module.exports = function( grunt ) { test: [ "test/data/testrunner.js", "test/unit/animation.js", + "test/unit/basic.js", "test/unit/tween.js", "test/unit/wrap.js" ], @@ -135,6 +136,13 @@ module.exports = function( grunt ) { }, testswarm: { tests: [ + + // A special module with basic tests, meant for + // not fully supported environments like Android 2.3, + // jsdom or PhantomJS. We run it everywhere, though, + // to make sure tests are not broken. + "basic", + "ajax", "animation", "attributes", |