fix mute test (#174)
This commit is contained in:
parent
7f5bea8f5b
commit
979b4afc89
|
@ -1,7 +1,7 @@
|
||||||
import {
|
import {
|
||||||
accountProfileFollowButton,
|
accountProfileFollowButton,
|
||||||
accountProfileMoreOptionsButton, communityNavButton, getNthSearchResult,
|
accountProfileMoreOptionsButton, communityNavButton, getNthSearchResult,
|
||||||
getNthStatus, getNthStatusOptionsButton, getNthDialogOptionsOption, getUrl, modalDialog
|
getNthStatus, getNthStatusOptionsButton, getNthDialogOptionsOption, getUrl, modalDialog, closeDialogButton
|
||||||
} from '../utils'
|
} from '../utils'
|
||||||
import { Selector as $ } from 'testcafe'
|
import { Selector as $ } from 'testcafe'
|
||||||
import { foobarRole } from '../roles'
|
import { foobarRole } from '../roles'
|
||||||
|
@ -38,6 +38,6 @@ test('Can mute and unmute an account', async t => {
|
||||||
.expect(getNthDialogOptionsOption(2).innerText).contains('Unfollow @admin')
|
.expect(getNthDialogOptionsOption(2).innerText).contains('Unfollow @admin')
|
||||||
.expect(getNthDialogOptionsOption(3).innerText).contains('Block @admin')
|
.expect(getNthDialogOptionsOption(3).innerText).contains('Block @admin')
|
||||||
.expect(getNthDialogOptionsOption(4).innerText).contains('Mute @admin')
|
.expect(getNthDialogOptionsOption(4).innerText).contains('Mute @admin')
|
||||||
.click(getNthDialogOptionsOption(2))
|
.click(closeDialogButton)
|
||||||
.expect(accountProfileFollowButton.getAttribute('aria-label')).eql('Unfollow')
|
.expect(accountProfileFollowButton.getAttribute('aria-label')).eql('Unfollow')
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue