playwright-vscode
playwright-vscode copied to clipboard
Adding a nonstandard reporter in Playwright configuration causes tests to no longer be found.
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"]],

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

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.