File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 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 } )
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 } )
You can’t perform that action at this time.
0 commit comments