diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-05 20:12:08 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-05 20:12:08 +0900 |
commit | 5ef9a2a60c99f24fe3df7035ae4dca574fc38c68 (patch) | |
tree | a8bc61e4de8224ecdecd373cd1a92871fb439504 /test/content | |
parent | c5e9a3d35db6fb0308a3771f5d1b3083dbf2943c (diff) |
fix imports in test
Diffstat (limited to 'test/content')
-rw-r--r-- | test/content/hint-key-producer.test.js | 2 | ||||
-rw-r--r-- | test/content/hint.test.js | 2 | ||||
-rw-r--r-- | test/content/navigates.test.js | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/content/hint-key-producer.test.js b/test/content/hint-key-producer.test.js index 74fb462..b2171ba 100644 --- a/test/content/hint-key-producer.test.js +++ b/test/content/hint-key-producer.test.js @@ -1,5 +1,5 @@ import { expect } from "chai"; -import HintKeyProducer from '../../src/content/hint-key-producer'; +import HintKeyProducer from 'content/hint-key-producer'; describe('HintKeyProducer class', () => { describe('#constructor', () => { diff --git a/test/content/hint.test.js b/test/content/hint.test.js index 9b2ab6e..1547971 100644 --- a/test/content/hint.test.js +++ b/test/content/hint.test.js @@ -1,5 +1,5 @@ import { expect } from "chai"; -import Hint from '../../src/content/hint'; +import Hint from 'content/hint'; describe('Hint class', () => { beforeEach(() => { diff --git a/test/content/navigates.test.js b/test/content/navigates.test.js index cf20435..b5144e9 100644 --- a/test/content/navigates.test.js +++ b/test/content/navigates.test.js @@ -1,5 +1,5 @@ import { expect } from "chai"; -import * as navigates from '../../src/content/navigates'; +import * as navigates from 'content/navigates'; describe('navigates module', () => { describe('#linkPrev', () => { |