-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Expand file tree
/
Copy pathcli.ts
More file actions
23 lines (21 loc) · 783 Bytes
/
cli.ts
File metadata and controls
23 lines (21 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
* @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
*/
import { join } from 'node:path';
import { ArchitectCommandModule } from '../../command-builder/architect-command-module';
import { CommandModuleImplementation } from '../../command-builder/command-module';
import { RootCommands } from '../command-config';
export default class TestCommandModule
extends ArchitectCommandModule
implements CommandModuleImplementation
{
multiTarget = true;
command = 'test [project]';
aliases = RootCommands['test'].aliases;
describe = 'Runs unit tests in a project.';
longDescriptionPath = join(__dirname, 'long-description.md');
}