2024-01-24 00:22:09 +01:00
|
|
|
/**
|
|
|
|
|
* Copyright (c) Microsoft Corporation.
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
2024-01-25 17:36:13 +01:00
|
|
|
import type { Command } from 'playwright-core/lib/utilsBundle';
|
|
|
|
|
|
2024-02-13 18:34:03 +01:00
|
|
|
import { program } from 'playwright/lib/program';
|
2024-02-10 04:02:42 +01:00
|
|
|
import { runDevServer } from './devServer';
|
2024-01-24 00:22:09 +01:00
|
|
|
export { program } from 'playwright/lib/program';
|
2024-01-25 17:36:13 +01:00
|
|
|
|
|
|
|
|
function addDevServerCommand(program: Command) {
|
2024-03-28 20:19:03 +01:00
|
|
|
const command = program.command('dev-server', { hidden: true });
|
2024-01-25 17:36:13 +01:00
|
|
|
command.description('start dev server');
|
2024-02-10 04:02:42 +01:00
|
|
|
command.option('-c, --config <file>', `Configuration file, or a test directory with optional "playwright.config.{m,c}?{js,ts}"`);
|
2024-01-25 17:36:13 +01:00
|
|
|
command.action(options => {
|
2024-02-13 18:34:03 +01:00
|
|
|
runDevServer(options.config);
|
2024-01-25 17:36:13 +01:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
addDevServerCommand(program);
|