Skip to content

Commit 1cd1239

Browse files
committed
cherry-pick(#30170): chore: hide internal commands
1 parent 122ab67 commit 1cd1239

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/playwright-ct-core/src/program.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { runDevServer } from './devServer';
2121
export { program } from 'playwright/lib/program';
2222

2323
function addDevServerCommand(program: Command) {
24-
const command = program.command('dev-server');
24+
const command = program.command('dev-server', { hidden: true });
2525
command.description('start dev server');
2626
command.option('-c, --config <file>', `Configuration file, or a test directory with optional "playwright.config.{m,c}?{js,ts}"`);
2727
command.action(options => {

0 commit comments

Comments
 (0)