blob: 6ebe71e9a158c48d3a79aa75d0702c3b3d77d4b9 (
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 NavigateHistoryPrevOperator from "../../../../src/background/operators/impls/NavigateHistoryPrevOperator";
import MockTabPresenter from "../../mock/MockTabPresenter";
import MockNavigateClient from "../../mock/MockNavigateClient";
describe("NavigateHistoryPrevOperator", () => {
describe("#run", () => {
it("send a message to navigate previous in the history", async () => {
const navigateClient = new MockNavigateClient();
const mock = sinon
.mock(navigateClient)
.expects("historyPrev")
.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 NavigateHistoryPrevOperator(tabPresenter, navigateClient);
await sut.run();
mock.verify();
});
});
});
|