blob: 8221a5c70baacfc5808b0bf90ee80c8a3d9e0727 (
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
|
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 historyNextSpy = jest
.spyOn(navigateClient, "historyPrev")
.mockReturnValue(Promise.resolve());
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();
expect(historyNextSpy).toBeCalledWith(1);
});
});
});
|