diff options
| author | Maxim Filippov <colixer@gmail.com> | 2018-12-17 02:45:40 +0300 |
|---|---|---|
| committer | Maxim Filippov <colixer@gmail.com> | 2018-12-17 02:45:40 +0300 |
| commit | 5f10c5e786ddba2741675255aaa8c23ba17cca61 (patch) | |
| tree | f53997f3e6ea2cafbe77bd9f98ab42535e53ae4e /test/unit/specs/components/user_profile.spec.js | |
| parent | 2211c533ddf7a05723afb2e2a8664b9b49c9648d (diff) | |
Fix user profile test
Diffstat (limited to 'test/unit/specs/components/user_profile.spec.js')
| -rw-r--r-- | test/unit/specs/components/user_profile.spec.js | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/test/unit/specs/components/user_profile.spec.js b/test/unit/specs/components/user_profile.spec.js index 04092716..b7743f1f 100644 --- a/test/unit/specs/components/user_profile.spec.js +++ b/test/unit/specs/components/user_profile.spec.js @@ -16,9 +16,15 @@ const externalProfileStore = new Vuex.Store({ api: { backendInteractor: backendInteractorService('') }, + interface: { + browserSupport: '' + }, config: { colors: '', - highlight: {} + highlight: {}, + customTheme: { + colors: [] + } }, instance: { hideUserStats: true @@ -103,9 +109,15 @@ const localProfileStore = new Vuex.Store({ api: { backendInteractor: backendInteractorService('') }, + interface: { + browserSupport: '' + }, config: { colors: '', - highlight: {} + highlight: {}, + customTheme: { + colors: [] + } }, instance: { hideUserStats: true |
