add screen_name_ui to tests

This commit is contained in:
Shpuld Shpuldson 2021-02-26 16:37:46 +02:00
parent 09fe160e8b
commit 49aa10e1c0
1 changed files with 4 additions and 2 deletions

View File

@ -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({