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(); ).toBeVisible();
await page await page
.getByRole( 'radio' ) .getByRole( 'radio', { name: 'Im 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, Im 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! Lets 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 stores capabilities',
.filter( { hasText: 'Extending your store' } ) } )
) )
.toBeVisible( { timeout: 30000 } ); .toBeVisible( { timeout: 30000 } );
// dashboard shown // dashboard shown