playwright-webhook-reporter
v0.1.1
Published
Universal Playwright reporter to send test results to any webhook
Downloads
6
Maintainers
Readme
playwright-webhook-reporter
Universal Playwright reporter to send test results to any webhook. Handy presets are included.
Installation
Usage
Raw
import { defineConfig } from '@playwright/test';
import { webhookReporter } from 'playwright-webhook-reporter';
export default defineConfig({
reporter: [
webhookReporter('raw', {
webhookUrl: 'https://webhook.site/dc15c506-0fef-4e4e-b8f7-29e9111e0831',
method: 'post',
headers: {
'x-my-header': 'foo'
},
// body:
})
]
});
Feedback
Feel free to share your feedback and suggestions in issues.