fix(test-runner): allow additional params when pw-test is not installed (#7200)

This commit is contained in:
Max Schmitt 2021-06-17 13:40:49 -07:00 committed by GitHub
parent 219e5138be
commit 5bf69b667e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -265,7 +265,7 @@ if (!process.env.PW_CLI_TARGET_LANG) {
if (playwrightTestPackagePath) {
require(playwrightTestPackagePath).addTestCommand(program);
} else {
const command = program.command('test');
const command = program.command('test').allowUnknownOption(true);
command.description('Run tests with Playwright Test. Available in @playwright/test package.');
command.action(async (args, opts) => {
console.error('Please install @playwright/test package to use Playwright Test.');