1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-02 22:57:36 +01:00
Pinafore-Web-Client-Frontend/tests/spec/102-notifications.js

34 lines
1.3 KiB
JavaScript
Raw Normal View History

2018-02-24 21:27:32 -08:00
import { foobarRole } from '../roles'
import { getNthStatus, getUrl, homeNavButton, notificationsNavButton, validateTimeline } from '../utils'
2018-03-16 10:06:02 -07:00
import { favoriteStatusAs } from '../serverActions'
2018-02-24 21:27:32 -08:00
import { notifications } from '../fixtures'
2018-03-06 21:32:51 -08:00
fixture`102-notifications.js`
2018-02-24 21:27:32 -08:00
.page`http://localhost:4002`
test('shows unread notifications', async t => {
await t.useRole(foobarRole)
.hover(getNthStatus(0))
2018-03-06 20:44:05 -08:00
.hover(getNthStatus(2))
.hover(getNthStatus(4))
.hover(getNthStatus(5))
2018-02-24 21:27:32 -08:00
.expect(notificationsNavButton.getAttribute('aria-label')).eql('Notifications')
2018-03-06 20:44:05 -08:00
let statusId = (await getNthStatus(5).find('.status-relative-date').getAttribute('href'))
.split('/').slice(-1)[0]
2018-03-16 10:06:02 -07:00
await favoriteStatusAs('admin', statusId)
2018-02-24 21:27:32 -08:00
await t
.expect(notificationsNavButton.getAttribute('aria-label')).eql('Notifications (1)')
.click(notificationsNavButton)
.expect(getUrl()).contains('/notifications')
.expect(notificationsNavButton.getAttribute('aria-label')).eql('Notifications (current page)')
await validateTimeline(t, [
{
favoritedBy: 'admin',
content: 'this is followers-only'
}
].concat(notifications))
await t
.click(homeNavButton)
.expect(notificationsNavButton.getAttribute('aria-label')).eql('Notifications')
})