From 4f0decd042a4c91b8dc626d41134c3c8273e5171 Mon Sep 17 00:00:00 2001 From: Omar Al Jaljuli Date: Tue, 24 Sep 2024 14:38:47 -0400 Subject: [PATCH] adding new projects to playwright.config.ts --- e2e-tests/playwright.config.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/e2e-tests/playwright.config.ts b/e2e-tests/playwright.config.ts index e7cc36e9db..c7cd59ee48 100644 --- a/e2e-tests/playwright.config.ts +++ b/e2e-tests/playwright.config.ts @@ -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: { @@ -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',