Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Tests: Use jquery-git1 instead of jquery-git
  • Loading branch information
scottgonzalez committed Mar 10, 2015
commit 952d5d8fff4e4cf2e248966afb6c078e344fd0d9
2 changes: 1 addition & 1 deletion build/tasks/testswarm.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module.exports = function( grunt ) {
"use strict";

var versions = {
"git": "git",
"git1": "git1",
"1.11": "1.11.0 1.11.1 1.11.2",
"1.10": "1.10.0 1.10.1 1.10.2",
"1.9": "1.9.0 1.9.1",
Expand Down
4 changes: 2 additions & 2 deletions tests/jquery.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ for ( ; i < length; i++ ) {
}
}

if ( version === "git" ) {
url = "http://code.jquery.com/jquery-git.js";
if ( version === "git" || version === "git1" ) {
url = "http://code.jquery.com/jquery-" + version + ".js";
} else {
url = "../../../external/jquery-" + ( version || "1.11.2" ) + "/jquery.js";
}
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/subsuite.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var versions = [
"1.9.0", "1.9.1",
"1.10.0", "1.10.1", "1.10.2",
"1.11.0", "1.11.1", "1.11.2",
"git"
"git1"
],
additionalTests = {
// component: [ "other_test.html" ]
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/testsuite.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ QUnit.config.urlConfig.push({
"1.11.0", "1.11.1", "1.11.2",
"2.0.0", "2.0.1", "2.0.2", "2.0.3",
"2.1.0", "2.1.1", "2.1.2", "2.1.3",
"git"
"git1", "git"
],
tooltip: "Which jQuery Core version to test against"
});
Expand Down