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/NavigateRootOperator.test.ts | |
parent | 7305bc1c34ceced31db943c8f23ed826d3d522f0 (diff) |
Add operator tests
Diffstat (limited to 'test/background/operators/impls/NavigateRootOperator.test.ts')
-rw-r--r-- | test/background/operators/impls/NavigateRootOperator.test.ts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/background/operators/impls/NavigateRootOperator.test.ts b/test/background/operators/impls/NavigateRootOperator.test.ts new file mode 100644 index 0000000..bbe574c --- /dev/null +++ b/test/background/operators/impls/NavigateRootOperator.test.ts @@ -0,0 +1,18 @@ +import { expect } from "chai"; +import NavigateRootOperator from "../../../../src/background/operators/impls/NavigateRootOperator"; +import MockTabPresenter from "../../mock/MockTabPresenter"; + +describe("NavigateRootOperator", () => { + describe("#run", () => { + it("opens root directory in the URL", async () => { + const tabPresenter = new MockTabPresenter(); + await tabPresenter.create("https://example.com/search?q=apple#top"); + const sut = new NavigateRootOperator(tabPresenter); + + await sut.run(); + + const url = (await tabPresenter.getCurrent()).url; + expect(url).to.be.equal("https://example.com"); + }); + }); +}); |