blob: 8e2200e2b87dda694cbaccb2d4cc6fa6ceb14ec0 (
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 MockTabPresenter from "../../mock/MockTabPresenter";
import CloseTabRightOperator from "../../../../src/background/operators/impls/CloseTabRightOperator";
describe("CloseTabRightOperator", () => {
describe("#run", () => {
it("close the right of the current tab", 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 });
await tabPresenter.create("https://example.com/4", { active: false });
const sut = new CloseTabRightOperator(tabPresenter);
await sut.run();
const tabs = await tabPresenter.getAll();
expect(tabs.map((t) => t.url)).toEqual([
"https://example.com/1",
"https://example.com/2",
]);
});
});
});
|