diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-12-22 10:42:48 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-12-22 10:48:39 +0900 |
commit | da72c2ddd916d79d134662e3985b53a4ac78af7a (patch) | |
tree | 5367c48648e2018f55f12d847baba94559e10040 /test/content/presenters/Hint.test.ts | |
parent | 029d5365e7d74e87375fccb8db097b7c2df3f7f4 (diff) |
Fix lint rules on tests
Diffstat (limited to 'test/content/presenters/Hint.test.ts')
-rw-r--r-- | test/content/presenters/Hint.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/content/presenters/Hint.test.ts b/test/content/presenters/Hint.test.ts index 708ddaa..7daa63d 100644 --- a/test/content/presenters/Hint.test.ts +++ b/test/content/presenters/Hint.test.ts @@ -12,7 +12,7 @@ describe('Hint', () => { describe('#constructor', () => { it('creates a hint element with tag name', () => { const link = document.getElementById('test-link'); - const hint = new Hint(link, 'abc'); + new Hint(link, 'abc'); const elem = document.querySelector('.vimvixen-hint'); expect(elem.textContent.trim()).to.be.equal('abc'); |