blob: c2a106c1eb605fc180b18d27de3e5a28bf47152d (
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
|
import { expect } from "chai";
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)).to.deep.equal([
"https://example.com/1",
"https://example.com/2",
]);
});
});
});
|