test: fix flakey notification test (#1958)
This commit is contained in:
parent
b451093ece
commit
ddd565c708
|
@ -43,6 +43,7 @@ test('Notification timeline filters correctly affect counts - favs', async t =>
|
|||
await loginAsFoobar(t)
|
||||
await t
|
||||
.expect(getNthStatusContent(1).innerText).contains('I do not care if you fav this')
|
||||
await sleep(500)
|
||||
await favoriteStatusAs('admin', statusId)
|
||||
await t
|
||||
.expect(notificationBadge.innerText).eql('1', { timeout })
|
||||
|
@ -62,6 +63,7 @@ test('Notification timeline filters correctly affect counts - favs', async t =>
|
|||
await loginAsFoobar(t)
|
||||
await t
|
||||
.expect(getNthStatusContent(1).exists).ok()
|
||||
await sleep(500)
|
||||
await postAs('admin', 'hey yo @foobar')
|
||||
await t
|
||||
.expect(notificationBadge.innerText).eql('1', { timeout })
|
||||
|
@ -81,6 +83,7 @@ test('Notification timeline filters correctly affect counts - follows', async t
|
|||
await loginAsFoobar(t)
|
||||
await t
|
||||
.expect(getNthStatusContent(1).exists).ok()
|
||||
await sleep(500)
|
||||
await followAs('ExternalLinks', 'foobar')
|
||||
await t
|
||||
.expect(notificationBadge.innerText).eql('1', { timeout })
|
||||
|
|
Loading…
Reference in a new issue