playwright-vscode icon indicating copy to clipboard operation
playwright-vscode copied to clipboard

Adding a nonstandard reporter in Playwright configuration causes tests to no longer be found.

Open dougrday opened this issue 3 years ago • 0 comments

When configuring Playwright, if I add a non-standard reporter to the configuration, the extension can no longer find my tests.

Works

reporter: [["list"]],

Works

reporter: [["list"], ["html"]],

image

Fails

reporter: [["list"], ["@bgotink/playwright-coverage", {...}]],

or

reporter: [["list"], ["other-nonstandard-reporter"]],

image

This is forcing me to use multiple configuration files in my project - one simple one to ensure the VSCode extension works, and another for more in-depth testing needs.

dougrday avatar Jul 15 '22 15:07 dougrday