@testpulse.run/playwright-console-reporter
v0.3.0
Published
Console reporter for Playwright built on TestPulse reporter core.
Maintainers
Readme
@testpulse.run/playwright-console-reporter
Console reporter for Playwright built on the TestPulse reporter event pipeline.
Use this package when you want a compact terminal reporter that prints test progress, stdout/stderr, failures, retries, and the final run summary.
Installation
npm install -D @testpulse.run/playwright-console-reporter @playwright/testPlaywright Configuration
import { defineConfig } from "@playwright/test";
export default defineConfig({
reporter: [["@testpulse.run/playwright-console-reporter"]]
});You can combine it with other reporters:
export default defineConfig({
reporter: [
["@testpulse.run/playwright-console-reporter"],
["html"]
]
});Options
export default defineConfig({
reporter: [
[
"@testpulse.run/playwright-console-reporter",
{
color: "auto",
verbose: false
}
]
]
});color:true,false, or"auto"; defaults to automatic TTY detection.verbose: prints test start lines in addition to completion lines.
Related Packages
@testpulse.run/reporter: sends Playwright events to TestPulse.@testpulse.run/playwright-jsonl-reporter: writes Playwright events as JSONL.@testpulse.run/playwright-core: lower-level reporter event adapter.
