UNPKG

@ockilson/ng-jest

Version:

Schematic to setup jest for angular/cli projects

16 lines 621 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 jestApplication(_options) { return (tree, _context) => { return schematics_1.chain([ schematics_1.externalSchematic("@schematics/angular", "application", _options), karma_1.removeKarmaFilesFromProject(_options), jest_1.addBuilderToAngularProjectConfig(_options) ]); }; } exports.jestApplication = jestApplication; //# sourceMappingURL=app.js.map