e2e-impl.js 644 B

123456789101112131415161718192021
  1. "use strict";
  2. /**
  3. * @license
  4. * Copyright Google Inc. All Rights Reserved.
  5. *
  6. * Use of this source code is governed by an MIT-style license that can be
  7. * found in the LICENSE file at https://angular.io/license
  8. */
  9. Object.defineProperty(exports, "__esModule", { value: true });
  10. const architect_command_1 = require("../models/architect-command");
  11. class E2eCommand extends architect_command_1.ArchitectCommand {
  12. constructor() {
  13. super(...arguments);
  14. this.target = 'e2e';
  15. this.multiTarget = true;
  16. }
  17. async run(options) {
  18. return this.runArchitectTarget(options);
  19. }
  20. }
  21. exports.E2eCommand = E2eCommand;