Revert all strings that initially contained `'` sign
This commit is contained in:
parent
e852707e06
commit
f978595303
|
@ -189,13 +189,12 @@ test.describe( 'Store owner can complete the core profiler', () => {
|
||||||
} )
|
} )
|
||||||
).toBeVisible();
|
).toBeVisible();
|
||||||
await page
|
await page
|
||||||
.getByRole( 'radio' )
|
.getByRole( 'radio', { name: 'I’m already selling' } )
|
||||||
.filter( { hasText: 'already selling' } )
|
.first()
|
||||||
.click();
|
.click();
|
||||||
await page.getByLabel( 'Select an option' ).click();
|
await page.getByLabel( 'Select an option' ).click();
|
||||||
await page
|
await page
|
||||||
.getByRole( 'option' )
|
.getByRole( 'option', { name: 'No, I’m selling offline' } )
|
||||||
.filter( { hasText: 'selling offline' } )
|
|
||||||
.click();
|
.click();
|
||||||
await page.getByRole( 'button', { name: 'Continue' } ).click();
|
await page.getByRole( 'button', { name: 'Continue' } ).click();
|
||||||
} );
|
} );
|
||||||
|
@ -296,16 +295,16 @@ test.describe( 'Store owner can complete the core profiler', () => {
|
||||||
// and we want the test to complete in order for cleanup to happen
|
// and we want the test to complete in order for cleanup to happen
|
||||||
await expect
|
await expect
|
||||||
.soft(
|
.soft(
|
||||||
page
|
page.getByRole( 'heading', {
|
||||||
.getByRole( 'heading' )
|
name: 'Woo! Let’s get your features ready',
|
||||||
.filter( { hasText: 'get your features ready' } )
|
} )
|
||||||
)
|
)
|
||||||
.toBeVisible( { timeout: 30000 } );
|
.toBeVisible( { timeout: 30000 } );
|
||||||
await expect
|
await expect
|
||||||
.soft(
|
.soft(
|
||||||
page
|
page.getByRole( 'heading', {
|
||||||
.getByRole( 'heading' )
|
name: 'Extending your store’s capabilities',
|
||||||
.filter( { hasText: 'Extending your store' } )
|
} )
|
||||||
)
|
)
|
||||||
.toBeVisible( { timeout: 30000 } );
|
.toBeVisible( { timeout: 30000 } );
|
||||||
// dashboard shown
|
// dashboard shown
|
||||||
|
|
Loading…
Reference in New Issue