Skip to content

Commit

Permalink
update-package-used-for-tests-to-secure-version
Browse files Browse the repository at this point in the history
  • Loading branch information
aluanhaddad committed Jan 27, 2018
1 parent 8e720e1 commit 002bec8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions test/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ suite('API tests', function() {
test('Normalize', function(done) {
return api.normalize('jquery')
.then(function(normalized) {
assert(normalized === common.toFileURL(path.resolve('testlibs') + '/jspm_packages/github/components/jquery@2.1.4/jquery.js'));
assert(normalized === common.toFileURL(path.resolve('testlibs') + '/jspm_packages/github/components/jquery@2.2.4/jquery.js'));
})
.then(done, done);

Expand All @@ -40,4 +40,4 @@ suite('API tests', function() {
})
.then(done, done);
});
});
});
4 changes: 2 additions & 2 deletions test/dogfood.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ suite('API tests', function() {

return loader.normalize('jquery')
.then(function(normalized) {
assert(normalized === loader.baseURL + 'jspm_packages/github/components/jquery@2.1.4/jquery.js');
assert(normalized === loader.baseURL + 'jspm_packages/github/components/jquery@2.2.4/jquery.js');
done();
})
.catch(done);
Expand All @@ -44,4 +44,4 @@ suite('API tests', function() {
})
.catch(done);
});
});
});
6 changes: 3 additions & 3 deletions testlibs/jspm.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ SystemJS.config({
"github:d3/[email protected]/d3.js",
"github:d3/[email protected]",
"tests/jquery.js",
"github:components/jquery@2.1.4/jquery.js",
"github:components/jquery@2.1.4.json",
"github:components/jquery@2.2.4/jquery.js",
"github:components/jquery@2.2.4.json",
"tests/bootstrap.js",
"tests/bootstrap.html!github:systemjs/[email protected]/text.js",
"github:systemjs/[email protected]",
Expand All @@ -182,4 +182,4 @@ SystemJS.config({
"npm:[email protected]/mocha.css!github:systemjs/[email protected]/css.js"
]
}
});
});
4 changes: 2 additions & 2 deletions testlibs/jspm.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SystemJS.config({
"http": "npm:[email protected]",
"https": "npm:[email protected]",
"jodid25519": "npm:[email protected]",
"jquery": "github:components/jquery@2.1.4",
"jquery": "github:components/jquery@2.2.4",
"jsbn": "npm:[email protected]",
"jspm": "github:jspm/[email protected]",
"jspm-registry": "npm:[email protected]",
Expand Down Expand Up @@ -1849,7 +1849,7 @@ SystemJS.config({
},
"github:twbs/[email protected]": {
"map": {
"jquery": "github:components/jquery@2.1.4"
"jquery": "github:components/jquery@2.2.4"
}
},
"npm:[email protected]": {
Expand Down
4 changes: 2 additions & 2 deletions testlibs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"d3": "d3/d3@^3.5.9",
"ember": "components/[email protected]",
"github": "npm:jspm-github@^0.14.11",
"jquery": "components/jquery@2.1.4",
"jquery": "components/jquery@2.2.4",
"jspm": "jspm/[email protected]",
"mocha": "npm:[email protected]",
"npm": "npm:jspm-npm@^0.27.0",
Expand Down Expand Up @@ -78,7 +78,7 @@
"ember.prod.js"
]
},
"github:components/jquery@2.1.4": {
"github:components/jquery@2.2.4": {
"main": "jquery"
},
"github:twbs/[email protected]": {
Expand Down

0 comments on commit 002bec8

Please sign in to comment.