aboutsummaryrefslogtreecommitdiff
path: root/test/unit/specs/components/user_profile.spec.js
diff options
context:
space:
mode:
authorshpuld <shp@cock.li>2019-01-28 19:02:46 +0200
committershpuld <shp@cock.li>2019-01-28 19:02:46 +0200
commit51024a2c8af9d88b07c050b7502fa62843aa4ba2 (patch)
tree4c6f61e08f209d6a89a8a7a5e58991c2445f9e13 /test/unit/specs/components/user_profile.spec.js
parent676acdbf82726cd78ce8611d4c6ba78c58b8fc4c (diff)
parentbb2ee04f04dac177407f7cfbc8709ed4cd9965ff (diff)
Merge branch 'develop' into feat/media-modal
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
}
}
},