package.src.commands.test.cli.js Maven / Gradle / Ivy
"use strict";
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
Object.defineProperty(exports, "__esModule", { value: true });
const path_1 = require("path");
const architect_command_module_1 = require("../../command-builder/architect-command-module");
const command_config_1 = require("../command-config");
class TestCommandModule extends architect_command_module_1.ArchitectCommandModule {
multiTarget = true;
command = 'test [project]';
aliases = command_config_1.RootCommands['test'].aliases;
describe = 'Runs unit tests in a project.';
longDescriptionPath = (0, path_1.join)(__dirname, 'long-description.md');
}
exports.default = TestCommandModule;