Files
alfresco-content-app/e2e/playwright/smoke-test/project.json
Akash Rathod a99ca755ea ACS-9201 create smoke test suite (#4361)
* 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
2025-02-18 12:32:29 +01:00

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"
}
}
}