diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/content/actions/follow.test.js (renamed from test/actions/follow.test.js) | 4 | ||||
-rw-r--r-- | test/content/actions/input.test.js (renamed from test/actions/input.test.js) | 4 | ||||
-rw-r--r-- | test/content/components/follow.html (renamed from test/components/follow.html) | 0 | ||||
-rw-r--r-- | test/content/components/follow.test.js (renamed from test/components/follow.test.js) | 4 | ||||
-rw-r--r-- | test/content/reducers/follow.test.js (renamed from test/reducers/follow.test.js) | 4 | ||||
-rw-r--r-- | test/content/reducers/input.test.js (renamed from test/reducers/input.test.js) | 4 |
6 files changed, 10 insertions, 10 deletions
diff --git a/test/actions/follow.test.js b/test/content/actions/follow.test.js index 32ab9e2..3ac844c 100644 --- a/test/actions/follow.test.js +++ b/test/content/actions/follow.test.js @@ -1,6 +1,6 @@ import { expect } from "chai"; -import actions from 'actions'; -import * as followActions from 'actions/follow'; +import actions from 'content/actions'; +import * as followActions from 'content/actions/follow'; describe('follow actions', () => { describe('enable', () => { diff --git a/test/actions/input.test.js b/test/content/actions/input.test.js index 0a2ab18..6031829 100644 --- a/test/actions/input.test.js +++ b/test/content/actions/input.test.js @@ -1,6 +1,6 @@ import { expect } from "chai"; -import actions from 'actions'; -import * as inputActions from 'actions/input'; +import actions from 'content/actions'; +import * as inputActions from 'content/actions/input'; describe("input actions", () => { describe("keyPress", () => { diff --git a/test/components/follow.html b/test/content/components/follow.html index 6bd8f87..6bd8f87 100644 --- a/test/components/follow.html +++ b/test/content/components/follow.html diff --git a/test/components/follow.test.js b/test/content/components/follow.test.js index 294bfc9..9c00c79 100644 --- a/test/components/follow.test.js +++ b/test/content/components/follow.test.js @@ -1,10 +1,10 @@ import { expect } from "chai"; -import FollowComponent from 'components/follow'; +import FollowComponent from 'content/components/follow'; describe('FollowComponent', () => { describe('#getTargetElements', () => { beforeEach(() => { - document.body.innerHTML = __html__['test/components/follow.html']; + document.body.innerHTML = __html__['test/content/components/follow.html']; }); it('returns visible links', () => { diff --git a/test/reducers/follow.test.js b/test/content/reducers/follow.test.js index e1db680..e2b3445 100644 --- a/test/reducers/follow.test.js +++ b/test/content/reducers/follow.test.js @@ -1,6 +1,6 @@ import { expect } from "chai"; -import actions from 'actions'; -import followReducer from 'reducers/follow'; +import actions from 'content/actions'; +import followReducer from 'content/reducers/follow'; describe('follow reducer', () => { it ('returns the initial state', () => { diff --git a/test/reducers/input.test.js b/test/content/reducers/input.test.js index 7b5a89c..d5e5f6b 100644 --- a/test/reducers/input.test.js +++ b/test/content/reducers/input.test.js @@ -1,6 +1,6 @@ import { expect } from "chai"; -import actions from 'actions'; -import inputReducer from 'reducers/input'; +import actions from 'content/actions'; +import inputReducer from 'content/reducers/input'; describe("input reducer", () => { it('return the initial state', () => { |