logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 49aa10e1c0e279d692fb92695f92e4b8548f6b12
parent 09fe160e8b9fad7a8c70e44ae894d67211b993e1
Author: Shpuld Shpuldson <shp@cock.li>
Date:   Fri, 26 Feb 2021 16:37:46 +0200

add screen_name_ui to tests

Diffstat:

Mtest/unit/specs/components/user_profile.spec.js6++++--
1 file 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 @@ -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({