changed the only surviving and important test to accommodate for new notifications flow.

This commit is contained in:
Henry Jameson 2018-08-16 14:46:05 +03:00
parent 3afe65352b
commit cc473df314

View file

@ -301,8 +301,28 @@ describe('The Statuses module', () => {
deletion.uri = 'xxx'
mutations.addNewStatuses(state, { statuses: [status, otherStatus], user })
mutations.addNewNotifications(
state,
{
notifications: [{
ntype: 'mention',
status: otherStatus,
notice: otherStatus,
is_seen: false
}]
})
expect(state.notifications.data.length).to.eql(1)
mutations.addNewNotifications(
state,
{
notifications: [{
ntype: 'mention',
status: mentionedStatus,
notice: mentionedStatus,
is_seen: false
}]
})
mutations.addNewStatuses(state, { statuses: [mentionedStatus], user })
expect(state.allStatuses.length).to.eql(3)