2018-05-26 20:51:41 +00:00
|
|
|
import { loginAsFoobar } from '../roles'
|
2018-03-19 17:09:05 +00:00
|
|
|
import {
|
|
|
|
getNthStatus, homeNavButton, localTimelineNavButton, sleep
|
|
|
|
} from '../utils'
|
|
|
|
import {
|
|
|
|
postAs
|
|
|
|
} from '../serverActions'
|
|
|
|
|
|
|
|
fixture`107-streaming-gap.js`
|
|
|
|
.page`http://localhost:4002`
|
|
|
|
|
|
|
|
test('fills in a status posted while away from timeline', async t => {
|
2018-03-20 01:00:49 +00:00
|
|
|
let timeout = 30000
|
2018-03-19 17:09:05 +00:00
|
|
|
|
2018-05-26 20:51:41 +00:00
|
|
|
await loginAsFoobar(t)
|
|
|
|
await t
|
2018-03-19 17:09:05 +00:00
|
|
|
.click(localTimelineNavButton)
|
2018-05-25 03:01:34 +00:00
|
|
|
.expect(getNthStatus(0).exists).ok({timeout})
|
2018-03-19 17:09:05 +00:00
|
|
|
.hover(getNthStatus(0))
|
|
|
|
await postAs('admin', 'heyo')
|
|
|
|
await t.expect(getNthStatus(0).innerText).contains('heyo', {timeout})
|
|
|
|
.click(homeNavButton)
|
|
|
|
.hover(getNthStatus(0))
|
|
|
|
await postAs('admin', 'posted this while you were away!')
|
|
|
|
await t.expect(getNthStatus(0).innerText).contains('posted this while you were away!', {timeout})
|
|
|
|
.click(localTimelineNavButton)
|
|
|
|
.expect(getNthStatus(0).innerText).contains('posted this while you were away!', {timeout})
|
2018-03-20 01:00:49 +00:00
|
|
|
.expect(getNthStatus(1).innerText).contains('heyo', {timeout})
|
2018-03-23 00:55:57 +00:00
|
|
|
await sleep(5000)
|
2018-03-19 17:09:05 +00:00
|
|
|
await postAs('admin', 'posted this while you were watching')
|
|
|
|
await t.expect(getNthStatus(0).innerText).contains('posted this while you were watching', {timeout})
|
|
|
|
})
|