blob: 4d9423c2a9cfc018633e68b51cd1624f28c44b19 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
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).toEqual([
"https://example.com/",
"view-source:https://example.com/",
]);
});
});
});
|