diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-08 15:11:09 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-08 15:11:09 +0900 |
commit | 2faf44af7443b3f858e15d63295a490afba83b4e (patch) | |
tree | feac4996deb63c6161b63dec10c47fd82238aaa5 /test | |
parent | 39fb5400370b818760dc7bcfe42e74b2512a840d (diff) |
move store to shared
Diffstat (limited to 'test')
-rw-r--r-- | test/shared/store/index.test.js (renamed from test/store/index.test.js) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/store/index.test.js b/test/shared/store/index.test.js index 5dce715..133033b 100644 --- a/test/store/index.test.js +++ b/test/shared/store/index.test.js @@ -1,5 +1,5 @@ import { expect } from "chai"; -import { createStore } from 'store'; +import { createStore } from 'shared/store'; describe("Store class", () => { const reducer = (state, action) => { |