diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-02-21 18:42:43 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2014-03-04 23:02:37 +0100 |
commit | 3651d44a307bb2b44d9e7063331ceb3ad4d3ce5f (patch) | |
tree | 019a842192d2220d712cd07105d74f90a5fe3bb9 | |
parent | fe420c0eaccb490e2f66423c60a896b88da79395 (diff) | |
download | jquery-ui-3651d44a307bb2b44d9e7063331ceb3ad4d3ce5f.tar.gz jquery-ui-3651d44a307bb2b44d9e7063331ceb3ad4d3ce5f.zip |
Tests: Expose jQuery version select
Makes use of the extended urlConfig in QUnit 1.14
-rw-r--r-- | tests/unit/testsuite.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/unit/testsuite.js b/tests/unit/testsuite.js index 1ccd4099d..c2f30222b 100644 --- a/tests/unit/testsuite.js +++ b/tests/unit/testsuite.js @@ -57,6 +57,17 @@ QUnit.config.urlConfig.push({ tooltip: "Skip running JSHint, e.g. within TestSwarm, where Jenkins runs it already" }); +QUnit.config.urlConfig.push({ + id: "jquery", + label: "jQuery version", + value: [ + "1.6", "1.6.1", "1.6.2", "1.6.3", "1.6.4", "1.7", "1.7.1", "1.7.2", + "1.8.0", "1.8.1", "1.8.2", "1.8.3", "1.9.0", "1.9.1", "1.10.0", + "1.10.1", "1.10.2", "2.0.0", "2.0.1", "2.0.2", "2.0.3", "git" + ], + tooltip: "Which jQuery Core version to test against" +}); + jshintLoaded = false; TestHelpers.testJshint = function( module ) { // Function.prototype.bind check is needed because JSHint doesn't work in ES3 browsers anymore |