30 lines
1.0 KiB
JavaScript
30 lines
1.0 KiB
JavaScript
|
import { foobarRole } from '../roles'
|
||
|
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 => {
|
||
|
let timeout = 20000
|
||
|
|
||
|
await t.useRole(foobarRole)
|
||
|
.click(localTimelineNavButton)
|
||
|
.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})
|
||
|
await sleep(2000)
|
||
|
await postAs('admin', 'posted this while you were watching')
|
||
|
await t.expect(getNthStatus(0).innerText).contains('posted this while you were watching', {timeout})
|
||
|
})
|