Skip to content

Commit

Permalink
Updated HoverController unit tests with AbortController instead of Ca…
Browse files Browse the repository at this point in the history
…ncelToken
  • Loading branch information
sronveaux committed Sep 20, 2024
1 parent 73a2a0d commit 7ff8731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/specs/components/ol/HoverController.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe('ol/HoverController.js', () => {
expect(comp.map).to.equal(map);
expect(comp.timerHandle).to.equal(null);
expect(comp.activeOverlayId).to.equal(null);
expect(comp.pendingRequestsCancelSrc).to.equal(null);
expect(comp.pendingRequestsAbortCtrl).to.equal(null);
expect(comp.conf.delay).to.equal(150)
expect(comp.conf.hideOnMousemove).to.equal(false)
expect(comp.conf.hoverOverlay).to.equal('wgu-hover-tooltip')
Expand Down

0 comments on commit 7ff8731

Please sign in to comment.