Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 8988157

Browse files
committed
chore(node): update jasmine to 2.8.0, and adjust tests
1 parent d253c9d commit 8988157

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"gulp-sourcemaps": "^1.2.2",
5858
"gulp-uglify": "^1.0.1",
5959
"gulp-util": "^3.0.1",
60-
"jasmine-core": "2.5.2",
60+
"jasmine-core": "^2.8.0",
6161
"jasmine-node": "^2.0.0",
6262
"jasmine-reporters": "^2.2.0",
6363
"jquery": "^3.2.1",

test/AngularSpec.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1035,10 +1035,13 @@ describe('angular', function() {
10351035

10361036
}
10371037

1038-
var originalFunction;
1038+
var originalPrototype = window.Function.prototype;
10391039

10401040
beforeEach(function() {
10411041
spyOn(window, 'Function');
1042+
// Jasmine 2.7+ doesn't support spying on Function, so we have restore the prototype
1043+
// as Jasmine will use Function internally
1044+
window.Function.prototype = originalPrototype;
10421045
});
10431046

10441047
afterEach(function() {

yarn.lock

+5-1
Original file line numberDiff line numberDiff line change
@@ -3489,7 +3489,11 @@ [email protected]:
34893489
commander "0.6.1"
34903490
mkdirp "0.3.0"
34913491

3492-
[email protected], jasmine-core@~2.5.2:
3492+
jasmine-core@^2.8.0:
3493+
version "2.8.0"
3494+
resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.8.0.tgz#bcc979ae1f9fd05701e45e52e65d3a5d63f1a24e"
3495+
3496+
jasmine-core@~2.5.2:
34933497
version "2.5.2"
34943498
resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-2.5.2.tgz#6f61bd79061e27f43e6f9355e44b3c6cab6ff297"
34953499

0 commit comments

Comments
 (0)