aboutsummaryrefslogtreecommitdiff
path: root/test/background/operators/impls/ResetZoomOperator.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/background/operators/impls/ResetZoomOperator.test.ts')
-rw-r--r--test/background/operators/impls/ResetZoomOperator.test.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/background/operators/impls/ResetZoomOperator.test.ts b/test/background/operators/impls/ResetZoomOperator.test.ts
index 68cda05..40c56d9 100644
--- a/test/background/operators/impls/ResetZoomOperator.test.ts
+++ b/test/background/operators/impls/ResetZoomOperator.test.ts
@@ -1,4 +1,3 @@
-import sinon from "sinon";
import ResetZoomOperator from "../../../../src/background/operators/impls/ResetZoomOperator";
import MockZoomPresenter from "../../mock/MockZoomPresenter";
@@ -6,12 +5,14 @@ describe("ResetZoomOperator", () => {
describe("#run", () => {
it("resets zoom on the tab", async () => {
const zoomPresenter = new MockZoomPresenter();
- const mock = sinon.mock(zoomPresenter).expects("resetZoom").once();
+ const resetZoomSpy = jest
+ .spyOn(zoomPresenter, "resetZoom")
+ .mockReturnValue(Promise.resolve());
const sut = new ResetZoomOperator(zoomPresenter);
await sut.run();
- mock.verify();
+ expect(resetZoomSpy).toBeCalled();
});
});
});