Fixes for deletion.
This commit is contained in:
parent
47ddf8c3fb
commit
05f9e68dab
2 changed files with 10 additions and 6 deletions
|
@ -82,10 +82,10 @@ describe('The Statuses module', () => {
|
|||
it('removes statuses by tag on deletion', () => {
|
||||
const state = cloneDeep(defaultState)
|
||||
const status = makeMockStatus({id: 1})
|
||||
status.tag = 'xxx'
|
||||
status.uri = 'xxx'
|
||||
const deletion = makeMockStatus({id: 2, is_post_verb: false})
|
||||
deletion.text = 'Dolus deleted notice {{tag:gs.smuglo.li,2016-11-18:noticeId=1038007:objectType=note}}.'
|
||||
deletion.uri = 'xxx'
|
||||
deletion.uri= 'xxx'
|
||||
|
||||
mutations.addNewStatuses(state, { statuses: [status], showImmediately: true, timeline: 'public' })
|
||||
mutations.addNewStatuses(state, { statuses: [deletion], showImmediately: true, timeline: 'public' })
|
||||
|
@ -93,6 +93,7 @@ describe('The Statuses module', () => {
|
|||
expect(state.allStatuses).to.eql([])
|
||||
expect(state.timelines.public.statuses).to.eql([])
|
||||
expect(state.timelines.public.visibleStatuses).to.eql([])
|
||||
expect(state.timelines.public.maxId).to.eql(2)
|
||||
})
|
||||
|
||||
it('keeps a descending by id order in timeline.visibleStatuses and timeline.statuses', () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue