@testream/webdriverio-reporter
v1.2.3
Published
WebdriverIO reporter to upload test results to Testream
Maintainers
Readme
@testream/webdriverio-reporter
Bridges WebdriverIO/Selenium test runs from your codebase into Jira with Testream. Once configured, it uploads results automatically.
Quick Start
npm install --save-dev @testream/webdriverio-reporter// wdio.conf.ts
const testreamConfig = {
apiKey: process.env.TESTREAM_API_KEY,
uploadEnabled: true,
};
export const config = {
reporters: [
'spec',
['@testream/webdriverio-reporter', testreamConfig],
],
services: [
['@testream/webdriverio-reporter', testreamConfig],
],
};Generated CTRF reports are enriched with bounded source snippets when the report
contains a test filePath and the source file can be matched by test name.
Need more configuration options? See the full guide at https://docs.testream.app/reporters/webdriverio.
