@wdio/reporter
Advanced tools
Comparing version 5.14.5 to 5.15.2
{ | ||
"name": "@wdio/reporter", | ||
"version": "5.14.5", | ||
"version": "5.15.2", | ||
"description": "A WebdriverIO utility to help reporting all events", | ||
@@ -42,3 +42,3 @@ "author": "Christian Bromann <christian@saucelabs.com>", | ||
"types": "reporter.d.ts", | ||
"gitHead": "d22ba8ceeeee4e94d6a4f67da707c7e06eeed7fe" | ||
"gitHead": "bfe37c105c96fd3403a14bf8f439dc04e6178541" | ||
} |
@@ -9,4 +9,4 @@ declare namespace WDIOReporter { | ||
onRunnerStart(): void; | ||
onBeforeCommand(): void; | ||
onAfterCommand(): void; | ||
onBeforeCommand(command: BeforeCommand): void; | ||
onAfterCommand(command: AfterCommand): void; | ||
onScreenshot(): void; | ||
@@ -65,6 +65,22 @@ onSuiteStart(suite: Suite): void; | ||
} | ||
interface BeforeCommand { | ||
method: string; | ||
endpoint: string; | ||
body: any; | ||
sessionId: string; | ||
cid: string; | ||
} | ||
interface AfterCommand { | ||
method: string; | ||
endpoint: string; | ||
body?: any; | ||
result?: any; | ||
sessionId: string; | ||
cid: string; | ||
} | ||
} | ||
declare module "@wdio/reporter" { | ||
export default WDIOReporter.Reporter; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24364
414