aboutsummaryrefslogtreecommitdiff
path: root/test/background/operators/impls/ShowCommandOperator.test.ts
blob: c07176d4a8cc4a5708742b41a1ba1ef063168057 (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
import ShowCommandOperator from "../../../../src/background/operators/impls/ShowCommandOperator";
import MockTabPresenter from "../../mock/MockTabPresenter";
import MockConsoleClient from "../../mock/MockConsoleClient";

describe("ShowCommandOperator", () => {
  describe("#run", () => {
    it("show command with addbookmark command", 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 consoleClient = new MockConsoleClient();
      const showCommandSpy = jest
        .spyOn(consoleClient, "showCommand")
        .mockReturnValue(Promise.resolve());

      const sut = new ShowCommandOperator(tabPresenter, consoleClient);
      await sut.run();

      expect(showCommandSpy).toBeCalledWith(1, "");
    });
  });
});