mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2026-09-09 18:02:54 +00:00
* [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
132 lines
3.4 KiB
JSON
132 lines
3.4 KiB
JSON
{
|
|
"name": "viewer-actions-e2e",
|
|
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "e2e/playwright/viewer-actions/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"commands": [
|
|
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
|
]
|
|
},
|
|
"configurations": {
|
|
"ui": {
|
|
"args": [
|
|
"--ui"
|
|
]
|
|
},
|
|
"debug": {
|
|
"args": [
|
|
"--debug"
|
|
]
|
|
},
|
|
"headed": {
|
|
"args": [
|
|
"--headed"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@angular-eslint/builder:lint"
|
|
},
|
|
"e2e-multibrowser": {
|
|
"executor": "nx:run-commands",
|
|
"options": {},
|
|
"configurations": {
|
|
"webkit-headed": {
|
|
"env": {
|
|
"PLAYWRIGHT_BROWSER": "webkit"
|
|
},
|
|
"args": [
|
|
"--headed"
|
|
],
|
|
"commands": [
|
|
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
|
]
|
|
},
|
|
"webkit-headless": {
|
|
"env": {
|
|
"PLAYWRIGHT_BROWSER": "webkit",
|
|
"PLAYWRIGHT_HEADLESS": "true"
|
|
},
|
|
"commands": [
|
|
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
|
]
|
|
},
|
|
"firefox-headed": {
|
|
"env": {
|
|
"PLAYWRIGHT_BROWSER": "firefox"
|
|
},
|
|
"args": [
|
|
"--headed"
|
|
],
|
|
"commands": [
|
|
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
|
]
|
|
},
|
|
"firefox-headless": {
|
|
"env": {
|
|
"PLAYWRIGHT_BROWSER": "firefox",
|
|
"PLAYWRIGHT_HEADLESS": "true"
|
|
},
|
|
"commands": [
|
|
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
|
]
|
|
},
|
|
"chrome-headed": {
|
|
"env": {
|
|
"PLAYWRIGHT_BROWSER": "chrome"
|
|
},
|
|
"args": [
|
|
"--headed"
|
|
],
|
|
"commands": [
|
|
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
|
]
|
|
},
|
|
"chrome-headless": {
|
|
"env": {
|
|
"PLAYWRIGHT_BROWSER": "chrome",
|
|
"PLAYWRIGHT_HEADLESS": "true"
|
|
},
|
|
"commands": [
|
|
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
|
]
|
|
},
|
|
"msedge-headed": {
|
|
"env": {
|
|
"PLAYWRIGHT_BROWSER": "msedge"
|
|
},
|
|
"args": [
|
|
"--headed"
|
|
],
|
|
"commands": [
|
|
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
|
]
|
|
},
|
|
"msedge-headless": {
|
|
"env": {
|
|
"PLAYWRIGHT_BROWSER": "msedge",
|
|
"PLAYWRIGHT_HEADLESS": "true"
|
|
},
|
|
"commands": [
|
|
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
|
]
|
|
},
|
|
"all-browsers-headless": {
|
|
"env": {
|
|
"PLAYWRIGHT_BROWSER": "all",
|
|
"PLAYWRIGHT_HEADLESS": "true"
|
|
},
|
|
"commands": [
|
|
"playwright test --config=e2e/playwright/viewer-actions/playwright.config.ts"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|