aboutsummaryrefslogtreecommitdiff
path: root/test/background/operators/impls/OpenSourceOperator.test.ts
blob: 541032b98b29c1556d14187f4d731322fbabbbf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { expect } from "chai";
import OpenSourceOperator from "../../../../src/background/operators/impls/OpenSourceOperator";
import MockTabPresenter from "../../mock/MockTabPresenter";

describe("OpenSourceOperator", () => {
  describe("#run", () => {
    it("opens view-source URL of the current tab", async () => {
      const tabPresenter = new MockTabPresenter();
      await tabPresenter.create("https://example.com/");
      const sut = new OpenSourceOperator(tabPresenter);

      await sut.run();

      const urls = (await tabPresenter.getAll()).map((t) => t.url);
      expect(urls).to.be.deep.equal([
        "https://example.com/",
        "view-source:https://example.com/",
      ]);
    });
  });
});