53 lines
1.1 KiB
JSON
53 lines
1.1 KiB
JSON
{
|
|
"name": "twenty-e2e-testing",
|
|
"projectType": "application",
|
|
"tags": ["scope:testing"],
|
|
"targets": {
|
|
"setup": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"cwd": "packages/twenty-e2e-testing",
|
|
"commands": [
|
|
"yarn playwright install"
|
|
]
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"cwd": "packages/twenty-e2e-testing",
|
|
"commands": [
|
|
"yarn playwright test"
|
|
]
|
|
}
|
|
},
|
|
"test:ui": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"cwd": "packages/twenty-e2e-testing",
|
|
"commands": [
|
|
"yarn playwright test --ui"
|
|
]
|
|
}
|
|
},
|
|
"test:debug": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"cwd": "packages/twenty-e2e-testing",
|
|
"commands": [
|
|
"yarn playwright test --debug"
|
|
]
|
|
}
|
|
},
|
|
"test:report": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"cwd": "packages/twenty-e2e-testing",
|
|
"commands": [
|
|
"yarn playwright show-report"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|