Skip to content

Commit

Permalink
cherry-pick(#30170): chore: hide internal commands
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman committed Mar 28, 2024
1 parent 122ab67 commit 1cd1239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/playwright-ct-core/src/program.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import { runDevServer } from './devServer';
export { program } from 'playwright/lib/program';

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

0 comments on commit 1cd1239

Please sign in to comment.