aboutsummaryrefslogtreecommitdiff
path: root/test/background/operators/impls/CancelOperator.test.ts
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2021-10-10 01:42:37 +0000
committerGitHub <noreply@github.com>2021-10-10 01:42:37 +0000
commitdfcefe1b84cc96ead1c8d8f9aa65ff05ccd70378 (patch)
tree12f1a4ed6da8fd96c034d23bcf08b1535bca1113 /test/background/operators/impls/CancelOperator.test.ts
parent24f4f06db6572d81cadfe191f36c433a79985871 (diff)
parent039095e18562c44edda2c5a83a3d82c2e220b370 (diff)
Merge pull request #1267 from ueokande/move-to-jest
Move to Jest
Diffstat (limited to 'test/background/operators/impls/CancelOperator.test.ts')
-rw-r--r--test/background/operators/impls/CancelOperator.test.ts10
1 files changed, 4 insertions, 6 deletions
diff --git a/test/background/operators/impls/CancelOperator.test.ts b/test/background/operators/impls/CancelOperator.test.ts
index 915becf..a723f6f 100644
--- a/test/background/operators/impls/CancelOperator.test.ts
+++ b/test/background/operators/impls/CancelOperator.test.ts
@@ -1,4 +1,3 @@
-import sinon from "sinon";
import CancelOperator from "../../../../src/background/operators/impls/CancelOperator";
import MockTabPresenter from "../../mock/MockTabPresenter";
import MockConsoleClient from "../../mock/MockConsoleClient";
@@ -10,15 +9,14 @@ describe("CancelOperator", () => {
const currenTab = await tabPresenter.create("https://example.com/");
const consoleClient = new MockConsoleClient();
- const mock = sinon
- .mock(consoleClient)
- .expects("hide")
- .withArgs(currenTab?.id);
+ const spy = jest
+ .spyOn(consoleClient, "hide")
+ .mockResolvedValueOnce(undefined);
const sut = new CancelOperator(tabPresenter, consoleClient);
await sut.run();
- mock.verify();
+ expect(spy).toBeCalledWith(currenTab?.id);
});
});
});