@@ -31,7 +31,7 @@ test.describe('Vue 2 in Vue 3', () => {
31
31
} ) ;
32
32
} ) ;
33
33
34
- test ( ' Check that both apps shares the button with same text' , async ( { page } ) => {
34
+ test ( ` Check that both apps shares the button with same text ( ${ property . headerName } )` , async ( { page } ) => {
35
35
const basePage = new BaseMethods ( page ) ;
36
36
await basePage . openLocalhost ( { number : property . host } ) ;
37
37
await basePage . checkElementWithTextPresence ( {
@@ -69,7 +69,7 @@ test.describe('Vue 2 in Vue 3', () => {
69
69
} ) ;
70
70
} ) ;
71
71
72
- test ( `Checks that only 'vue3' app recognises button as remote component` , async ( { page } ) => {
72
+ test ( `Checks that only 'vue3' app recognises button as remote component ( ${ property . headerName } ) ` , async ( { page } ) => {
73
73
const basePage = new BaseMethods ( page ) ;
74
74
await basePage . openLocalhost ( { number : property . host } ) ;
75
75
if ( property . headerName === Constants . commonPhrases . vue2InVue3App . appsNames . vue3 ) {
@@ -131,7 +131,7 @@ test.describe('Vue 2 in Vue 3', () => {
131
131
} ) ;
132
132
} ) ;
133
133
134
- test ( ' Checks that clicks counter is not shared between apps' , async ( { page } ) => {
134
+ test ( ` Checks that clicks counter is not shared between apps ( ${ property . headerName } )` , async ( { page } ) => {
135
135
const basePage = new BaseMethods ( page ) ;
136
136
const host = property . host === 3001 ? appsData [ 1 ] . host : appsData [ 0 ] . host ;
137
137
const defaultCounterText = Constants . commonPhrases . vue2InVue3App . defaultCounterText ;
0 commit comments