Revert all strings that initially contained `'` sign

This commit is contained in:
Ivan Stojadinov 2024-08-25 13:39:40 +02:00
parent e852707e06
commit f978595303
1 changed files with 9 additions and 10 deletions

View File

@ -189,13 +189,12 @@ test.describe( 'Store owner can complete the core profiler', () => {
} )
).toBeVisible();
await page
.getByRole( 'radio' )
.filter( { hasText: 'already selling' } )
.getByRole( 'radio', { name: 'Im already selling' } )
.first()
.click();
await page.getByLabel( 'Select an option' ).click();
await page
.getByRole( 'option' )
.filter( { hasText: 'selling offline' } )
.getByRole( 'option', { name: 'No, Im selling offline' } )
.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
await expect
.soft(
page
.getByRole( 'heading' )
.filter( { hasText: 'get your features ready' } )
page.getByRole( 'heading', {
name: 'Woo! Lets get your features ready',
} )
)
.toBeVisible( { timeout: 30000 } );
await expect
.soft(
page
.getByRole( 'heading' )
.filter( { hasText: 'Extending your store' } )
page.getByRole( 'heading', {
name: 'Extending your stores capabilities',
} )
)
.toBeVisible( { timeout: 30000 } );
// dashboard shown