Skip to content

Commit

Permalink
fix: karma/jasmine deprecations
Browse files Browse the repository at this point in the history
  • Loading branch information
kurkle committed Nov 16, 2024
1 parent ca88f32 commit 0d82bad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = function(karma) {

client: {
jasmine: {
failFast: !!karma.autoWatch
stopOnSpecFailure: !!karma.autoWatch
}
},

Expand Down
2 changes: 1 addition & 1 deletion test/specs/zoom.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ describe('zoom', function() {
mode: 'xy',
onZoomStart: startSpy,
onZoom: zoomSpy,
onZoomComplete: done
onZoomComplete: () => done()
}
}
}
Expand Down

0 comments on commit 0d82bad

Please sign in to comment.