aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorShpuld Shpuldson <shp@cock.li>2021-02-26 16:37:46 +0200
committerShpuld Shpuldson <shp@cock.li>2021-02-26 16:37:46 +0200
commit49aa10e1c0e279d692fb92695f92e4b8548f6b12 (patch)
tree4ff445a4a4e4ccbc73240cd568ea4c57d0b8bd5e /test
parent09fe160e8b9fad7a8c70e44ae894d67211b993e1 (diff)
add screen_name_ui to tests
Diffstat (limited to 'test')
-rw-r--r--test/unit/specs/components/user_profile.spec.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/unit/specs/components/user_profile.spec.js b/test/unit/specs/components/user_profile.spec.js
index 80092b41..142db73c 100644
--- a/test/unit/specs/components/user_profile.spec.js
+++ b/test/unit/specs/components/user_profile.spec.js
@@ -31,13 +31,15 @@ const testGetters = {
const localUser = {
id: 100,
is_local: true,
- screen_name: 'testUser'
+ screen_name: 'testUser',
+ screen_name_ui: 'testUser'
}
const extUser = {
id: 100,
is_local: false,
- screen_name: 'testUser@test.instance'
+ screen_name: 'testUser@test.instance',
+ screen_name_ui: 'testUser@test.instance'
}
const externalProfileStore = new Vuex.Store({