flaky-dashboard-reporter
v0.1.0
Published
Playwright reporter that posts run results to the Test Reporting & Flaky Test Dashboard ingestion API
Readme
flaky-dashboard-reporter
Playwright reporter that posts run results to the Test Reporting & Flaky Test Dashboard.
Install
npm i -D flaky-dashboard-reporterConfigure
In playwright.config.ts:
export default defineConfig({
reporter: [
["list"],
[
"flaky-dashboard-reporter",
{
apiUrl: "https://your-dashboard.example.com/api/ingest",
apiKey: process.env.FLAKY_DASHBOARD_API_KEY,
},
],
],
});Or skip the options object entirely and set FLAKY_DASHBOARD_API_URL and
FLAKY_DASHBOARD_API_KEY env vars (recommended for CI — keeps the key out of
source control).
Branch and commit SHA are auto-detected from common CI env vars (GitHub
Actions, GitLab CI, Azure DevOps) or git rev-parse locally. Override with
the branch / commitSha options if needed.
