Playwright plugin to upload test results to Testream
npm install @testream/playwright-reporterBridges Playwright test runs from your codebase into Jira with Testream. Once configured, it uploads results automatically.
- Docs: https://testream.github.io/docs/reporters/playwright
``bash`
npm install --save-dev @testream/playwright-reporter
`ts
// playwright.config.ts
import { defineConfig } from '@playwright/test';
export default defineConfig({
reporter: [
['@testream/playwright-reporter', {
apiKey: process.env.TESTREAM_API_KEY,
uploadEnabled: true,
}],
],
});
``
Need more configuration options? See the full guide at https://testream.github.io/docs/reporters/playwright.