UNPKG

@moroo/wdio-slack-reporter

Version:

Reporter from WebdriverIO using Incoming webhook and Web API to send results to Slack.

17 lines 341 B
import { SuiteStats } from "@wdio/reporter"; class TimeoutError extends Error { code; constructor(message) { super(message); this.name = "TimeoutError"; this.code = "ETIMEDOUT"; } } class CucumberStats extends SuiteStats { state = "pending"; } export { CucumberStats, TimeoutError }; //# sourceMappingURL=types.js.map