aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/qunit.js
diff options
context:
space:
mode:
authorTimmy Willison <timmywil@users.noreply.github.com>2024-03-29 09:13:46 -0400
committerGitHub <noreply@github.com>2024-03-29 09:13:46 -0400
commit91df20be6b488ac6cf4da291d7ee3aa5d6feac73 (patch)
tree56b5c4f8b96a8323e3a6ce9c02c3e84c85a9d6d5 /tests/lib/qunit.js
parent802642c37323d5fc05bfa4cee90a900953f9a98d (diff)
downloadjquery-ui-91df20be6b488ac6cf4da291d7ee3aa5d6feac73.tar.gz
jquery-ui-91df20be6b488ac6cf4da291d7ee3aa5d6feac73.zip
Tests: replace grunt-contrib-qunit with jQuery test runner
- add filestash workflow Close gh-2221
Diffstat (limited to 'tests/lib/qunit.js')
-rw-r--r--tests/lib/qunit.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/lib/qunit.js b/tests/lib/qunit.js
index 7049d60a5..eac9c4a92 100644
--- a/tests/lib/qunit.js
+++ b/tests/lib/qunit.js
@@ -3,8 +3,7 @@ define( [
"jquery",
"qunit-assert-classes",
"qunit-assert-close",
- "lib/qunit-assert-domequal",
- "phantom-bridge"
+ "lib/qunit-assert-domequal"
], function( QUnit, $ ) {
"use strict";
@@ -14,6 +13,8 @@ QUnit.config.requireExpects = true;
QUnit.config.urlConfig.push( {
id: "jquery",
label: "jQuery version",
+
+ // Keep in sync with tests/runner/jquery.js
value: [
"1.8.0", "1.8.1", "1.8.2", "1.8.3",
"1.9.0", "1.9.1",
@@ -30,7 +31,7 @@ QUnit.config.urlConfig.push( {
"3.4.0", "3.4.1",
"3.5.0", "3.5.1",
"3.6.0", "3.6.1", "3.6.2", "3.6.3", "3.6.4",
- "3.7.0",
+ "3.7.0", "3.7.1",
"3.x-git", "git", "custom"
],
tooltip: "Which jQuery Core version to test against"