diff options
| author | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-10 10:10:36 +0000 |
|---|---|---|
| committer | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-10 10:10:36 +0000 |
| commit | b904f7e9b7c72c8b5b49d0ada673eb3a7f123377 (patch) | |
| tree | f5a5d4aef6bbb1ad608d68b702894361a3c18b7e | |
| parent | 8a628aa61f1d676cff0c30fcb0bf9da67a42ec1f (diff) | |
| download | mullvadvpn-b904f7e9b7c72c8b5b49d0ada673eb3a7f123377.tar.xz mullvadvpn-b904f7e9b7c72c8b5b49d0ada673eb3a7f123377.zip | |
Fix paths in mocks for backend
| -rw-r--r-- | test/mocks/backend.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/mocks/backend.js b/test/mocks/backend.js index 5cbf4630ba..1588421098 100644 --- a/test/mocks/backend.js +++ b/test/mocks/backend.js @@ -1,8 +1,8 @@ import configureMockStore from 'redux-mock-store'; import thunk from 'redux-thunk'; -import Backend from '../app/lib/backend'; -import { defaultServer } from '../app/config'; -import { LoginState, ConnectionState } from '../app/enums'; +import Backend from '../../app/lib/backend'; +import { defaultServer } from '../../app/config'; +import { LoginState, ConnectionState } from '../../app/enums'; // fetch is absent in node environment // this will automatically import it into global scope |
