@testream/playwright-reporter
v1.0.2
Published
Playwright plugin to upload test results to Testream
Downloads
495
Maintainers
Readme
@testream/playwright-reporter
Bridges Playwright test runs from your codebase into Jira with Testream. Once configured, it uploads results automatically.
Quick Start
npm install --save-dev @testream/playwright-reporter// 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://docs.testream.app/reporters/playwright.
