playwright-ng-schematics
Version:
Playwright Angular schematics
20 lines (19 loc) • 533 B
JSON
{
"$schema": "../../node_modules/@angular-devkit/schematics/collection-schema.json",
"schematics": {
"ng-add": {
"description": "Adds Playwright Test to your Angular project",
"factory": "./ng-add/index",
"schema": "./ng-add/schema.json"
},
"install-browsers": {
"description": "Install Browsers",
"factory": "./install-browsers/index"
},
"e2e": {
"description": "Creates a single test file",
"factory": "./e2e/index",
"schema": "./e2e/schema.json"
}
}
}