pinafore/tests/spec/014-compose-post-privacy.js

17 lines
714 B
JavaScript
Raw Normal View History

2018-04-08 20:42:31 +00:00
import { getNthPostPrivacyOptionInDialog, postPrivacyButton } from '../utils'
2018-03-03 21:23:26 +00:00
import { foobarRole } from '../roles'
2018-03-07 05:32:51 +00:00
fixture`014-compose-post-privacy.js`
2018-03-03 21:23:26 +00:00
.page`http://localhost:4002`
test('Changes post privacy', async t => {
await t.useRole(foobarRole)
.expect(postPrivacyButton.getAttribute('aria-label')).eql('Adjust privacy (currently Public)')
.click(postPrivacyButton)
2018-04-08 20:42:31 +00:00
.click(getNthPostPrivacyOptionInDialog(2))
2018-03-03 21:23:26 +00:00
.expect(postPrivacyButton.getAttribute('aria-label')).eql('Adjust privacy (currently Unlisted)')
.click(postPrivacyButton)
2018-04-08 20:42:31 +00:00
.click(getNthPostPrivacyOptionInDialog(1))
2018-03-03 21:23:26 +00:00
.expect(postPrivacyButton.getAttribute('aria-label')).eql('Adjust privacy (currently Public)')
})