mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
* ACS-9201 create smote suite * [ACS-9201] add smoke test workflow * [ACS-9201] add smoke test workflow * [ACS-9201] fix smoke test workflow * [ACS-9201] fix smoke test workflow * [ACS-9201] fix smoke test workflow * [ACS-9201] fix smoke test workflow * [ACS-9201] fix smoke test workflow * [ACS-9201] fix smoke test workflow * [ACS-9201] revert playwright pr smoke test run * [ACS-9201]smoke test suite tests * [ACS-9201]smoke test suite tests * [ACS-9201] remove workflow changes as not needed * [ACS-9201] fix lint
32 lines
758 B
JSON
32 lines
758 B
JSON
{
|
|
"name": "smoke-test-e2e",
|
|
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "e2e/playwright/smoke-test/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"commands": ["npx playwright test --config=e2e/playwright/smoke-test/playwright.config.ts"]
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "content-ce:serve:production"
|
|
},
|
|
"ui": {
|
|
"args": ["--ui"]
|
|
},
|
|
"debug": {
|
|
"args": ["--debug"]
|
|
},
|
|
"headed": {
|
|
"args": ["--headed"]
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@angular-eslint/builder:lint"
|
|
}
|
|
}
|
|
}
|