Files
blap/modules/project.json
T
2026-06-09 15:46:41 +01:00

17 lines
542 B
JSON

{
"$schema": "../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"targets": {
"test:playwright": {
"command": "playwright test",
"options": { "cwd": "modules" },
"dependsOn": ["^build:playwright"]
},
"test:playwright:screenshots": {
"command": "playwright-screenshots playwright test --update-snapshots --grep @screenshot",
"options": { "cwd": "modules" },
"dependsOn": ["^build:playwright"]
}
}
}