@crabnebula/webdriverio-cloud-reporter
v0.1.3
Published
WebdriverIO Reporter for CrabNebula Cloud via the CrabNebula Test Runner
Readme
Webdriver Reporter for CrabNebula Cloud
This package provides a Webdriver reporter that sends test results to CrabNebula Cloud when CrabNebula's test runner (either remotely or locally via @crabnebula/test-runner-backend).
It should be used along @crabnebula/tauri-driver.
Usage
Install the package using your preferred Node.js package manager:
npm install --save-dev @crabnebula/webdriverio-cloud-reporter
yarn install -D @crabnebula/webdriverio-cloud-reporter
pnpm install -D @crabnebula/webdriverio-cloud-reporterThen register it in the WebdriverIO configuration file:
// wdio.conf.js
const { CrabNebulaCloudReporter } = require("@crabnebula/webdriverio-cloud-reporter");
exports.config = {
reporters: [CrabNebulaCloudReporter],
}