test: fix flakey notification test (#1958)

cheerio-rc5
Nolan Lawson 2021-02-15 16:45:51 -08:00 zatwierdzone przez GitHub
rodzic b451093ece
commit ddd565c708
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

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