diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-17 12:52:24 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-17 12:52:24 +0900 |
commit | e9863299abf9498c67660e8a97c70ddb090baffe (patch) | |
tree | da322c6d1cac671da59b34dac884905718503516 /test/content | |
parent | 0be9776cb3d9033bcd3ae569bec71b300f2d4073 (diff) |
implement go-parent command
Diffstat (limited to 'test/content')
-rw-r--r-- | test/content/navigates.test.js | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/test/content/navigates.test.js b/test/content/navigates.test.js index 21c2a23..cf20435 100644 --- a/test/content/navigates.test.js +++ b/test/content/navigates.test.js @@ -2,9 +2,6 @@ import { expect } from "chai"; import * as navigates from '../../src/content/navigates'; describe('navigates module', () => { - beforeEach(() => { - }); - describe('#linkPrev', () => { it('clicks prev link by text content', (done) => { document.body.innerHTML = '<a href="#dummy">xprevx</a> <a href="#prev">go to prev</a>'; @@ -45,6 +42,15 @@ describe('navigates module', () => { }, 0); }); }); + + describe('#parent', () => { + // NOTE: not able to test location + it('removes hash', () => { + window.location.hash = "#section-1"; + navigates.parent(window); + expect(document.location.hash).to.be.empty; + }); + }); }); |