diff options
Diffstat (limited to 'test/reducers')
-rw-r--r-- | test/reducers/completion.test.js | 4 | ||||
-rw-r--r-- | test/reducers/console.test.js | 4 | ||||
-rw-r--r-- | test/reducers/follow.test.js | 4 | ||||
-rw-r--r-- | test/reducers/input.test.js | 4 | ||||
-rw-r--r-- | test/reducers/setting.test.js | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/test/reducers/completion.test.js b/test/reducers/completion.test.js index 79163bf..b2b36d9 100644 --- a/test/reducers/completion.test.js +++ b/test/reducers/completion.test.js @@ -1,6 +1,6 @@ import { expect } from "chai"; -import actions from '../../src/actions'; -import completionReducer from '../../src/reducers/completion'; +import actions from 'actions'; +import completionReducer from 'reducers/completion'; describe("completion reducer", () => { it ('return the initial state', () => { diff --git a/test/reducers/console.test.js b/test/reducers/console.test.js index 9820a08..d9f500f 100644 --- a/test/reducers/console.test.js +++ b/test/reducers/console.test.js @@ -1,6 +1,6 @@ import { expect } from "chai"; -import actions from '../../src/actions'; -import consoleReducer from '../../src/reducers/console'; +import actions from 'actions'; +import consoleReducer from 'reducers/console'; describe("console reducer", () => { it('return the initial state', () => { diff --git a/test/reducers/follow.test.js b/test/reducers/follow.test.js index 19a1300..79e75d4 100644 --- a/test/reducers/follow.test.js +++ b/test/reducers/follow.test.js @@ -1,6 +1,6 @@ import { expect } from "chai"; -import actions from '../../src/actions'; -import followReducer from '../../src/reducers/follow'; +import actions from 'actions'; +import followReducer from 'reducers/follow'; describe('follow reducer', () => { it ('returns the initial state', () => { diff --git a/test/reducers/input.test.js b/test/reducers/input.test.js index 3c3bf39..7b5a89c 100644 --- a/test/reducers/input.test.js +++ b/test/reducers/input.test.js @@ -1,6 +1,6 @@ import { expect } from "chai"; -import actions from '../../src/actions'; -import inputReducer from '../../src/reducers/input'; +import actions from 'actions'; +import inputReducer from 'reducers/input'; describe("input reducer", () => { it('return the initial state', () => { diff --git a/test/reducers/setting.test.js b/test/reducers/setting.test.js index 7261be6..1af031a 100644 --- a/test/reducers/setting.test.js +++ b/test/reducers/setting.test.js @@ -1,6 +1,6 @@ import { expect } from "chai"; -import actions from '../../src/actions'; -import settingReducer from '../../src/reducers/setting'; +import actions from 'actions'; +import settingReducer from 'reducers/setting'; describe("setting reducer", () => { it('return the initial state', () => { |