@ockilson/ng-jest
Version:
Schematic to setup jest for angular/cli projects
27 lines (26 loc) • 909 B
JSON
{
"$schema": "../node_modules/@angular-devkit/schematics/collection-schema.json",
"schematics": {
"ng-add": {
"description": "Setup jest for use with angular cli projects",
"factory": "./jest/install#jestSetup"
},
"jest": {
"description": "Setup jest for use with angular cli projects",
"schema": "./jest/schema.json",
"factory": "./jest/install#jestSetup"
},
"application": {
"aliases": [ "app" ],
"description": "Extension to the angular default application schematics to use jest instead of karma",
"schema": "./application.schema.json",
"factory": "./jest/app#jestApplication"
},
"library": {
"aliases": ["lib"],
"description": "Extension to the angular default library schematics to use jest instead of karma",
"schema": "./library.schema.json",
"factory": "./jest/lib#jestLibrary"
}
}
}