diff options
| author | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-01 12:48:46 +0000 |
|---|---|---|
| committer | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-01 12:48:46 +0000 |
| commit | 480d524dd655518ce1a4bc7315c1b81f9c02e159 (patch) | |
| tree | 32905819b1612bb8242400ebea79abdef634a608 /test/support.js | |
| parent | f2387c73988fac583adf0f9d4ee69e1d85c8d75b (diff) | |
| download | mullvadvpn-480d524dd655518ce1a4bc7315c1b81f9c02e159.tar.xz mullvadvpn-480d524dd655518ce1a4bc7315c1b81f9c02e159.zip | |
Split constants on enums and config.json
Diffstat (limited to 'test/support.js')
| -rw-r--r-- | test/support.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/support.js b/test/support.js index e60de376e4..10387465d8 100644 --- a/test/support.js +++ b/test/support.js @@ -1,7 +1,8 @@ import configureMockStore from 'redux-mock-store'; import thunk from 'redux-thunk'; import Backend from '../app/lib/backend'; -import { LoginState, ConnectionState, defaultServer } from '../app/constants'; +import { defaultServer } from '../app/config'; +import { LoginState, ConnectionState } from '../app/enums'; const middlewares = [ thunk ]; export const mockStore = configureMockStore(middlewares); |
