aboutsummaryrefslogtreecommitdiff
path: root/test/background/operators/impls/SelectLastTabOperator.test.ts
blob: 63668b160dae391adeec369a36c1bcb4f5d74e50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import SelectLastTabOperator from "../../../../src/background/operators/impls/SelectLastTabOperator";
import MockTabPresenter from "../../mock/MockTabPresenter";

describe("SelectLastTabOperator", () => {
  describe("#run", () => {
    it("select the rightmost 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 SelectLastTabOperator(tabPresenter);
      await sut.run();

      const url = (await tabPresenter.getCurrent()).url;
      expect(url).toEqual("https://example.com/3");
    });
  });
});