UNPKG

@ockilson/ng-jest

Version:

Schematic to setup jest for angular/cli projects

16 lines 605 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const schematics_1 = require("@angular-devkit/schematics"); const karma_1 = require("./karma"); const jest_1 = require("./jest"); function jestLibrary(_options) { return (tree, _context) => { return schematics_1.chain([ schematics_1.externalSchematic("@schematics/angular", "library", _options), karma_1.removeKarmaFilesFromProject(_options), jest_1.addBuilderToAngularProjectConfig(_options) ]); }; } exports.jestLibrary = jestLibrary; //# sourceMappingURL=lib.js.map