attempt to fix tests

This commit is contained in:
William Pitcock 2019-01-26 13:51:07 +00:00
parent 7b296696a3
commit efad3ad0a5
1 changed files with 32 additions and 0 deletions

View File

@ -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
}
}
},