blob: cbc9e81ffbab66b3d152b72128caf9ad7523854f (
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 DuplicateTabOperator from "../../../../src/background/operators/impls/DuplicateTabOperator";
import MockTabPresenter from "../../mock/MockTabPresenter";
describe("DuplicateTabOperator", () => {
describe("#run", () => {
it("duplicate a 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 });
const sut = new DuplicateTabOperator(tabPresenter);
await sut.run();
const tabs = await tabPresenter.getAll();
expect(tabs.map((t) => t.url)).toEqual([
"https://example.com/1",
"https://example.com/2",
"https://example.com/3",
"https://example.com/2",
]);
});
});
});
|