Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed May 22, 2020
1 parent 720a10b commit e75f43b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions e2e/scope/inherit-locale.test.js
Expand Up @@ -22,7 +22,9 @@
// root
await expect(page).toSelect('#app select', 'en')
await expect(page).toMatchElement('#app p', { text: 'hello world!' })
await expect(page).toMatchElement('#app div.child p', { text: 'Hi there!' })
await expect(page).toMatchElement('#app div.child p', {
text: 'Hi there!'
})
await expect(page).toMatchElement('#app label[for=checkbox]', {
text: 'Inherit locale from root'
})
Expand Down Expand Up @@ -54,7 +56,9 @@
await expect(page).toSelect('#app select', 'ja')
await expect(page).toSelect('#app select', 'en')
await expect(page).toMatchElement('#app p', { text: 'hello world!' })
await expect(page).toMatchElement('#app div.child p', { text: 'Hi there!' })
await expect(page).toMatchElement('#app div.child p', {
text: 'Hi there!'
})
await expect(page).toMatchElement('#app label[for=checkbox]', {
text: 'Inherit locale from root'
})
Expand Down

0 comments on commit e75f43b

Please sign in to comment.