Skip to content

Commit

Permalink
Update Playwright config
Browse files Browse the repository at this point in the history
  • Loading branch information
allie500 committed Jan 31, 2025
1 parent 67db114 commit aa2eb6b
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion tests/e2e-pw/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,27 @@ export default defineConfig( {
dependencies: [ 'setup' ],
},
{
name: 'chromium',
name: 'wcpay - merchant',
use: { ...devices[ 'Desktop Chrome' ] },
testMatch: getTestMatch( 'wcpay', 'merchant' ),
dependencies: [ 'setup' ],
},
{
name: 'wcpay - shopper',
use: { ...devices[ 'Desktop Chrome' ] },
testMatch: getTestMatch( 'wcpay', 'shopper' ),
dependencies: [ 'setup' ],
},
{
name: 'subscriptions - merchant',
use: { ...devices[ 'Desktop Chrome' ] },
testMatch: getTestMatch( 'subscriptions', 'merchant' ),
dependencies: [ 'setup' ],
},
{
name: 'subscriptions - shopper',
use: { ...devices[ 'Desktop Chrome' ] },
testMatch: getTestMatch( 'subscriptions', 'shopper' ),
dependencies: [ 'setup' ],
},
// Setup project
Expand Down

0 comments on commit aa2eb6b

Please sign in to comment.