aboutsummaryrefslogtreecommitdiff
path: root/test/unit/specs/components/user_profile.spec.js
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2019-01-26 21:11:02 +0000
committerShpuld Shpludson <shp@cock.li>2019-01-26 21:11:02 +0000
commitb82ba54addf0cd66419db478a93d1ee8350eeedd (patch)
tree0c87190439d8fa6cadcc71623769e5c1cca79b80 /test/unit/specs/components/user_profile.spec.js
parent8197c77f75929aad557c98a5f698159b1a6d0c90 (diff)
parentefad3ad0a51273e192590761b905d4db7d76bf71 (diff)
Merge branch 'feature/media-timeline' into 'develop'
media timeline See merge request pleroma/pleroma-fe!472
Diffstat (limited to 'test/unit/specs/components/user_profile.spec.js')
-rw-r--r--test/unit/specs/components/user_profile.spec.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/test/unit/specs/components/user_profile.spec.js b/test/unit/specs/components/user_profile.spec.js
index cde39245..41fd9cd0 100644
--- a/test/unit/specs/components/user_profile.spec.js
+++ b/test/unit/specs/components/user_profile.spec.js
@@ -66,6 +66,22 @@ const externalProfileStore = new Vuex.Store({
viewing: 'statuses',
userId: 100,
flushMarker: 0
+ },
+ media: {
+ statuses: [],
+ statusesObject: {},
+ faves: [],
+ visibleStatuses: [],
+ visibleStatusesObject: {},
+ newStatusCount: 0,
+ maxId: 0,
+ minVisibleId: 0,
+ loading: false,
+ followers: [],
+ friends: [],
+ viewing: 'statuses',
+ userId: 100,
+ flushMarker: 0
}
}
},
@@ -116,6 +132,22 @@ const localProfileStore = new Vuex.Store({
viewing: 'statuses',
userId: 100,
flushMarker: 0
+ },
+ media: {
+ statuses: [],
+ statusesObject: {},
+ faves: [],
+ visibleStatuses: [],
+ visibleStatusesObject: {},
+ newStatusCount: 0,
+ maxId: 0,
+ minVisibleId: 0,
+ loading: false,
+ followers: [],
+ friends: [],
+ viewing: 'statuses',
+ userId: 100,
+ flushMarker: 0
}
}
},