aboutsummaryrefslogtreecommitdiff
path: root/test/content
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-05 20:12:08 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-10-05 20:12:08 +0900
commit5ef9a2a60c99f24fe3df7035ae4dca574fc38c68 (patch)
treea8bc61e4de8224ecdecd373cd1a92871fb439504 /test/content
parentc5e9a3d35db6fb0308a3771f5d1b3083dbf2943c (diff)
fix imports in test
Diffstat (limited to 'test/content')
-rw-r--r--test/content/hint-key-producer.test.js2
-rw-r--r--test/content/hint.test.js2
-rw-r--r--test/content/navigates.test.js2
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', () => {