Fix playwright modules tests

This commit is contained in:
Michael Telatynski
2026-06-09 15:46:41 +01:00
parent a0ed801d00
commit a16b72732e
2 changed files with 19 additions and 3 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"$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"]
}
}
}