Skip to content

Commit 002fd01

Browse files
hardenglcursoragent
andcommitted
docs(dcm): clarify merge-gate vs downstream E2E project split
Add comments to playwright.config.ts explaining which project runs where: chromium (merge gate, local dev server) vs live (downstream Jenkins, requires PLAYWRIGHT_URL pointing at deployed cluster). Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent ae678e9 commit 002fd01

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

workspaces/dcm/playwright.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export default defineConfig({
6363
outputDir: 'test-results',
6464

6565
projects: [
66+
// Merge-gate safe: runs against the local dev server in CI
6667
{
6768
name: 'chromium',
6869
testDir: 'packages/app/e2e-tests',
@@ -71,6 +72,9 @@ export default defineConfig({
7172
channel: 'chrome',
7273
},
7374
},
75+
// Downstream E2E only: requires a deployed RHDH+DCM environment.
76+
// Activated by setting PLAYWRIGHT_URL to the live cluster base URL.
77+
// Run with: PLAYWRIGHT_URL=https://... yarn e2e-test:live
7478
...(process.env.PLAYWRIGHT_URL
7579
? [
7680
{

0 commit comments

Comments
 (0)