blob: 0c940b615db3e74572f81f22deb6106df6fc439c (
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 PinTabOperator from "../../../../src/background/operators/impls/PinTabOperator";
import MockTabPresenter from "../../mock/MockTabPresenter";
describe("PinTabOperator", () => {
describe("#run", () => {
it("make pinned to the current tab", async () => {
const tabPresenter = new MockTabPresenter();
await tabPresenter.create("https://example.com/", {
active: true,
pinned: false,
});
await tabPresenter.create("https://example.com/", {
active: false,
pinned: false,
});
const sut = new PinTabOperator(tabPresenter);
await sut.run();
const pins = (await tabPresenter.getAll()).map((t) => t.pinned);
expect(pins).to.deep.equal([true, false]);
});
});
});
|