mirror of
https://github.com/vector-im/element-web.git
synced 2026-07-06 15:30:01 +00:00
18 lines
605 B
JSON
18 lines
605 B
JSON
{
|
|
"$schema": "../node_modules/nx/schemas/project-schema.json",
|
|
"projectType": "library",
|
|
"implicitDependencies": ["modules/*"],
|
|
"targets": {
|
|
"test:playwright": {
|
|
"command": "playwright test",
|
|
"options": { "cwd": "modules" },
|
|
"dependsOn": ["^build:playwright", "^build"]
|
|
},
|
|
"test:playwright:screenshots": {
|
|
"command": "playwright-screenshots playwright test --update-snapshots --grep @screenshot",
|
|
"options": { "cwd": "modules" },
|
|
"dependsOn": ["^build:playwright", "^build"]
|
|
}
|
|
}
|
|
}
|