diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-12-03 23:15:24 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2020-12-09 23:09:34 +0900 |
commit | 8bbc3d9d159237f280c3e952cd1cb124601ed6d6 (patch) | |
tree | 4e2d9c23d0a25209fdd8ba9dd6849ce66df8d2df /test/background/operators/impls/OpenSourceOperator.test.ts | |
parent | 7305bc1c34ceced31db943c8f23ed826d3d522f0 (diff) |
Add operator tests
Diffstat (limited to 'test/background/operators/impls/OpenSourceOperator.test.ts')
-rw-r--r-- | test/background/operators/impls/OpenSourceOperator.test.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/background/operators/impls/OpenSourceOperator.test.ts b/test/background/operators/impls/OpenSourceOperator.test.ts new file mode 100644 index 0000000..541032b --- /dev/null +++ b/test/background/operators/impls/OpenSourceOperator.test.ts @@ -0,0 +1,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/", + ]); + }); + }); +}); |