blob: 6b7f7918e307687473cd3eb48c7ab3a3334665a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import sinon from "sinon";
import NavigateLinkPrevOperator from "../../../../src/background/operators/impls/NavigateLinkPrevOperator";
import MockTabPresenter from "../../mock/MockTabPresenter";
import MockNavigateClient from "../../mock/MockNavigateClient";
describe("NavigateLinkPrevOperator", () => {
describe("#run", () => {
it("send a message to navigate next page", async () => {
const navigateClient = new MockNavigateClient();
const mock = sinon.mock(navigateClient).expects("linkPrev").withArgs(1);
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 sut = new NavigateLinkPrevOperator(tabPresenter, navigateClient);
await sut.run();
mock.verify();
});
});
});
|