Skip to content

Commit 0d82bad

Browse files
committed
fix: karma/jasmine deprecations
1 parent ca88f32 commit 0d82bad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module.exports = function(karma) {
3333

3434
client: {
3535
jasmine: {
36-
failFast: !!karma.autoWatch
36+
stopOnSpecFailure: !!karma.autoWatch
3737
}
3838
},
3939

test/specs/zoom.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ describe('zoom', function() {
778778
mode: 'xy',
779779
onZoomStart: startSpy,
780780
onZoom: zoomSpy,
781-
onZoomComplete: done
781+
onZoomComplete: () => done()
782782
}
783783
}
784784
}

0 commit comments

Comments
 (0)