TestResult is the fastest way to get your team collaborating on test suite improvement.
Getting started with TestResult is easy. Just follow these steps:Download our JavaScript test reporter or download our TypeScript reporterAdd the reporter to your Playwright config:
Copy
// playwright.config.jsconst reporter = [];if (process.env.CI) { reporter.push(["./testresult-reporter.js"]);}module.exports = defineConfig({ reporter, // ... rest of your config});
Set your environment variables:
Copy
export API_KEY= Find in Account Settingsexport TEST_SUITE_UUID= Find it on your test suite page
Run your tests!Results should start showing up in your TestResult account immediately after your test run completes. Paid account will have unlimited access to historical results.