[ACS-12214] excluded flaky/unstable tests for multibrowser (#5275)

* [ACS-12214] excluded flaky/unstable tests for multibrowser

* [ACS-12214] more excluded tests

* [ACS-12214] more excluded tests 2

* [ACS-12214] added headless runs and suite retries

* [ACS-12214] cron multibrowser 2 suite runs - other 1 suite runs
This commit is contained in:
Adam Świderski
2026-07-09 13:56:24 +02:00
committed by GitHub
parent 9a8726b000
commit d3579e4529
27 changed files with 757 additions and 6 deletions
+36
View File
@@ -47,6 +47,15 @@
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"webkit-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "webkit",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"firefox-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox"
@@ -58,6 +67,15 @@
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"firefox-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "firefox",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"chrome-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome"
@@ -69,6 +87,15 @@
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"chrome-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "chrome",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"msedge-headed": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge"
@@ -80,6 +107,15 @@
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"msedge-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "msedge",
"PLAYWRIGHT_HEADLESS": "true"
},
"commands": [
"playwright test --config=e2e/playwright/folder-rules/playwright.config.ts"
]
},
"all-browsers-headless": {
"env": {
"PLAYWRIGHT_BROWSER": "all",