aboutsummaryrefslogtreecommitdiff
path: root/test/background/operators/impls/SelectLastTabOperator.test.ts
blob: b8cf5c4ebea992b80e737bc2f4381b7fabe6391a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { expect } from "chai";
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).to.equal("https://example.com/3");
    });
  });
});