add test and aria-label
This commit is contained in:
parent
7ec109c6af
commit
8a46f3b3d1
|
@ -8,7 +8,9 @@
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<a class="account-profile-details-item"
|
<a class="account-profile-details-item"
|
||||||
href='/accounts/{{account.id}}/follows'>
|
href='/accounts/{{account.id}}/follows'
|
||||||
|
aria-label="{{followingLabel}}"
|
||||||
|
>
|
||||||
<span class="account-profile-details-item-title">
|
<span class="account-profile-details-item-title">
|
||||||
Follows
|
Follows
|
||||||
</span>
|
</span>
|
||||||
|
@ -17,7 +19,9 @@
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
<a class="account-profile-details-item"
|
<a class="account-profile-details-item"
|
||||||
href='/accounts/{{account.id}}/followers'>
|
href='/accounts/{{account.id}}/followers'
|
||||||
|
aria-label="{{followersLabel}}"
|
||||||
|
>
|
||||||
<span class="account-profile-details-item-title">
|
<span class="account-profile-details-item-title">
|
||||||
Followers
|
Followers
|
||||||
</span>
|
</span>
|
||||||
|
@ -120,7 +124,9 @@
|
||||||
numFollowers: account => account.followers_count || 0,
|
numFollowers: account => account.followers_count || 0,
|
||||||
numStatusesDisplay: numStatuses => numberFormat.format(numStatuses),
|
numStatusesDisplay: numStatuses => numberFormat.format(numStatuses),
|
||||||
numFollowingDisplay: numFollowing => numberFormat.format(numFollowing),
|
numFollowingDisplay: numFollowing => numberFormat.format(numFollowing),
|
||||||
numFollowersDisplay: numFollowers => numberFormat.format(numFollowers)
|
numFollowersDisplay: numFollowers => numberFormat.format(numFollowers),
|
||||||
|
followersLabel: numFollowers => `Followed by ${numFollowers}`,
|
||||||
|
followingLabel: numFollowing => `Follows ${numFollowing}`
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
async onMoreOptionsClick () {
|
async onMoreOptionsClick () {
|
||||||
|
|
26
tests/spec/021-followers-follows.js
Normal file
26
tests/spec/021-followers-follows.js
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
import {
|
||||||
|
followersButton,
|
||||||
|
followsButton, getNthSearchResult,
|
||||||
|
getNthStatus, getUrl, goBack
|
||||||
|
} from '../utils'
|
||||||
|
import { foobarRole } from '../roles'
|
||||||
|
|
||||||
|
fixture`021-followers-follows.js`
|
||||||
|
.page`http://localhost:4002`
|
||||||
|
|
||||||
|
test('shows followers and follows', async t => {
|
||||||
|
await t.useRole(foobarRole)
|
||||||
|
.click(getNthStatus(0).find('.status-author-name'))
|
||||||
|
.expect(getUrl()).match(/\/accounts\/3$/)
|
||||||
|
.expect(followsButton.getAttribute('aria-label')).eql('Follows 2')
|
||||||
|
.click(followsButton)
|
||||||
|
.expect(getUrl()).contains('/accounts/3/follows')
|
||||||
|
.expect(getNthSearchResult(1).innerText).contains('@foobar')
|
||||||
|
.expect(getNthSearchResult(2).innerText).contains('@admin')
|
||||||
|
await goBack()
|
||||||
|
await t.expect(getUrl()).match(/\/accounts\/3$/)
|
||||||
|
.expect(followersButton.getAttribute('aria-label')).eql('Followed by 1')
|
||||||
|
.click(followersButton)
|
||||||
|
.expect(getUrl()).contains('/accounts/3/followers')
|
||||||
|
.expect(getNthSearchResult(1).innerText).contains('@admin')
|
||||||
|
})
|
|
@ -39,6 +39,8 @@ export const goBackButton = $('.dynamic-page-go-back')
|
||||||
export const accountProfileMoreOptionsButton = $('.account-profile-more-options button')
|
export const accountProfileMoreOptionsButton = $('.account-profile-more-options button')
|
||||||
export const addInstanceButton = $('#submitButton')
|
export const addInstanceButton = $('#submitButton')
|
||||||
export const mastodonLogInButton = $('button[type="submit"]')
|
export const mastodonLogInButton = $('button[type="submit"]')
|
||||||
|
export const followsButton = $('.account-profile-details > *:nth-child(2)')
|
||||||
|
export const followersButton = $('.account-profile-details > *:nth-child(3)')
|
||||||
|
|
||||||
export const favoritesCountElement = $('.status-favs-reblogs:nth-child(3)').addCustomDOMProperties({
|
export const favoritesCountElement = $('.status-favs-reblogs:nth-child(3)').addCustomDOMProperties({
|
||||||
innerCount: el => parseInt(el.innerText, 10)
|
innerCount: el => parseInt(el.innerText, 10)
|
||||||
|
|
Loading…
Reference in a new issue