UNPKG

836 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const command_1 = require("../models/command");
4const architect_command_1 = require("../models/architect-command");
5class E2eCommand extends architect_command_1.ArchitectCommand {
6 constructor() {
7 super(...arguments);
8 this.name = 'e2e';
9 this.target = 'e2e';
10 this.description = 'Run e2e tests in existing project.';
11 this.scope = command_1.CommandScope.inProject;
12 this.multiTarget = true;
13 this.options = [
14 this.prodOption,
15 this.configurationOption
16 ];
17 }
18 run(options) {
19 return this.runArchitectTarget(options);
20 }
21}
22E2eCommand.aliases = ['e'];
23exports.default = E2eCommand;
24//# sourceMappingURL=/Users/hansl/Sources/hansl/angular-cli/commands/e2e.js.map
\No newline at end of file