aboutsummaryrefslogtreecommitdiff
path: root/test/background/operators/impls/ShowWinOpenCommandOperator.test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'test/background/operators/impls/ShowWinOpenCommandOperator.test.ts')
-rw-r--r--test/background/operators/impls/ShowWinOpenCommandOperator.test.ts19
1 files changed, 8 insertions, 11 deletions
diff --git a/test/background/operators/impls/ShowWinOpenCommandOperator.test.ts b/test/background/operators/impls/ShowWinOpenCommandOperator.test.ts
index c81a2d4..ce2a5b8 100644
--- a/test/background/operators/impls/ShowWinOpenCommandOperator.test.ts
+++ b/test/background/operators/impls/ShowWinOpenCommandOperator.test.ts
@@ -1,4 +1,3 @@
-import sinon from "sinon";
import ShowWinOpenCommandOperator from "../../../../src/background/operators/impls/ShowWinOpenCommandOperator";
import MockTabPresenter from "../../mock/MockTabPresenter";
import MockConsoleClient from "../../mock/MockConsoleClient";
@@ -11,10 +10,9 @@ describe("ShowWinOpenCommandOperator", () => {
await tabPresenter.create("https://example.com/2", { active: true });
await tabPresenter.create("https://example.com/3", { active: false });
const consoleClient = new MockConsoleClient();
- const mock = sinon
- .mock(consoleClient)
- .expects("showCommand")
- .withArgs(1, "winopen ");
+ const showCommandSpy = jest
+ .spyOn(consoleClient, "showCommand")
+ .mockReturnValue(Promise.resolve());
const sut = new ShowWinOpenCommandOperator(
tabPresenter,
@@ -23,7 +21,7 @@ describe("ShowWinOpenCommandOperator", () => {
);
await sut.run();
- mock.verify();
+ expect(showCommandSpy).toBeCalledWith(1, "winopen ");
});
it("show command with winopen command and an URL of the current tab", async () => {
@@ -32,10 +30,9 @@ describe("ShowWinOpenCommandOperator", () => {
await tabPresenter.create("https://example.com/2", { active: true });
await tabPresenter.create("https://example.com/3", { active: false });
const consoleClient = new MockConsoleClient();
- const mock = sinon
- .mock(consoleClient)
- .expects("showCommand")
- .withArgs(1, "winopen https://example.com/2");
+ const showCommandSpy = jest
+ .spyOn(consoleClient, "showCommand")
+ .mockReturnValue(Promise.resolve());
const sut = new ShowWinOpenCommandOperator(
tabPresenter,
@@ -44,7 +41,7 @@ describe("ShowWinOpenCommandOperator", () => {
);
await sut.run();
- mock.verify();
+ expect(showCommandSpy).toBeCalledWith(1, "winopen https://example.com/2");
});
});
});