Skip to content

Commit e75f43b

Browse files
committed
fix format
1 parent 720a10b commit e75f43b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

e2e/scope/inherit-locale.test.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@
2222
// root
2323
await expect(page).toSelect('#app select', 'en')
2424
await expect(page).toMatchElement('#app p', { text: 'hello world!' })
25-
await expect(page).toMatchElement('#app div.child p', { text: 'Hi there!' })
25+
await expect(page).toMatchElement('#app div.child p', {
26+
text: 'Hi there!'
27+
})
2628
await expect(page).toMatchElement('#app label[for=checkbox]', {
2729
text: 'Inherit locale from root'
2830
})
@@ -54,7 +56,9 @@
5456
await expect(page).toSelect('#app select', 'ja')
5557
await expect(page).toSelect('#app select', 'en')
5658
await expect(page).toMatchElement('#app p', { text: 'hello world!' })
57-
await expect(page).toMatchElement('#app div.child p', { text: 'Hi there!' })
59+
await expect(page).toMatchElement('#app div.child p', {
60+
text: 'Hi there!'
61+
})
5862
await expect(page).toMatchElement('#app label[for=checkbox]', {
5963
text: 'Inherit locale from root'
6064
})

0 commit comments

Comments
 (0)