Skip to content

Commit 449831a

Browse files
committed
CLI: Add gen-test-instructions command
1 parent 0028158 commit 449831a

File tree

2 files changed

+574
-0
lines changed

2 files changed

+574
-0
lines changed

tools/cli/cliRouter.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import * as dependenciesCommand from './commands/dependencies.js';
88
import { dockerDefine } from './commands/docker.js';
99
import { docsDefine } from './commands/docs.js';
1010
import { draftDefine } from './commands/draft.js';
11+
import { genTestInstructionsDefine } from './commands/gen-test-instructions.js';
1112
import { generateDefine } from './commands/generate.js';
1213
import * as installCommand from './commands/install.js';
1314
import * as noopCommand from './commands/noop.js';
@@ -49,6 +50,7 @@ export async function cli() {
4950
argv = releaseDefine( argv );
5051
argv = rsyncDefine( argv );
5152
argv.command( testCommand );
53+
argv = genTestInstructionsDefine( argv );
5254
argv = watchDefine( argv );
5355

5456
// This adds usage information on failure and demands that a subcommand must be passed.

0 commit comments

Comments
 (0)