blob: 83b028c6b7b0dd7d09f0a458f5929ee2cecbaeaf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import sinon from "sinon";
import ShowCommandOperator from "../../../../src/background/operators/impls/ShowCommandOperator";
import MockTabPresenter from "../../mock/MockTabPresenter";
import MockConsoleClient from "../../mock/MockConsoleClient";
describe("ShowCommandOperator", () => {
describe("#run", () => {
it("show command with addbookmark command", async () => {
const tabPresenter = new MockTabPresenter();
await tabPresenter.create("https://example.com/1", { active: false });
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, "");
const sut = new ShowCommandOperator(tabPresenter, consoleClient);
await sut.run();
mock.verify();
});
});
});
|