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