Skip to content

Commit

Permalink
adding new projects to playwright.config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Omar-AlJaljuli committed Sep 25, 2024
1 parent fc2f8b5 commit 4f0decd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions e2e-tests/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,19 @@ export default defineConfig({
'**/playwright/e2e/plugins/bulk-import.spec.ts',
],
},
{
name: 'showcase-operator-nightly',
use: {
...devices['Desktop Chrome'],
viewport: { width: 1920, height: 1080 },
},
testIgnore: [
'**/playwright/e2e/plugins/rbac/**/*.spec.ts',
'**/playwright/e2e/plugins/analytics/analytics-disabled-rbac.spec.ts',
'**/playwright/e2e/verify-tls-config-with-external-postgres-db.spec.ts',
'**/playwright/e2e/plugins/bulk-import.spec.ts',
],
},
{
name: 'showcase-rbac',
use: {
Expand All @@ -64,6 +77,19 @@ export default defineConfig({
'**/playwright/e2e/plugins/bulk-import.spec.ts',
],
},
{
name: 'showcase-op-rbac-nightly',
use: {
...devices['Desktop Chrome'],
viewport: { width: 1920, height: 1080 },
},
testMatch: [
'**/playwright/e2e/plugins/rbac/**/*.spec.ts',
'**/playwright/e2e/plugins/analytics/analytics-disabled-rbac.spec.ts',
'**/playwright/e2e/verify-tls-config-with-external-postgres-db.spec.ts',
'**/playwright/e2e/plugins/bulk-import.spec.ts',
],
},

// {
// name: 'firefox',
Expand Down

0 comments on commit 4f0decd

Please sign in to comment.