@wdio/reporter
Advanced tools
Comparing version 7.0.0-beta.0 to 7.0.0-beta.1
@@ -9,3 +9,3 @@ /// <reference types="node" /> | ||
import RunnerStats from './stats/runner'; | ||
import { AfterCommandArgs, BeforeCommandArgs, CommandArgs, Tag } from './types'; | ||
import { AfterCommandArgs, BeforeCommandArgs, CommandArgs, Tag, Argument } from './types'; | ||
declare type CustomWriteStream = { | ||
@@ -51,3 +51,3 @@ write: (content: any) => boolean; | ||
} | ||
export { SuiteStats, Tag, HookStats, TestStats, RunnerStats, BeforeCommandArgs, AfterCommandArgs, CommandArgs }; | ||
export { SuiteStats, Tag, HookStats, TestStats, RunnerStats, BeforeCommandArgs, AfterCommandArgs, CommandArgs, Argument }; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -16,3 +16,3 @@ import type { Capabilities, Options } from '@wdio/types'; | ||
cid: string; | ||
capabilities: Capabilities.Capabilities; | ||
capabilities: Capabilities.RemoteCapability; | ||
sanitizedCapabilities: string; | ||
@@ -19,0 +19,0 @@ config: Options.Testrunner; |
@@ -1,3 +0,3 @@ | ||
import type { pickle } from 'cucumber'; | ||
import RunnableStats from './runnable'; | ||
import { Argument } from '../types'; | ||
export interface Test { | ||
@@ -18,5 +18,7 @@ type: 'test:start' | 'test:pass' | 'test:fail' | 'test:retry' | 'test:pending' | 'test:end'; | ||
retries?: number; | ||
argument?: pickle.Argument; | ||
argument?: string | Argument; | ||
} | ||
interface Output { | ||
command: string; | ||
params: any; | ||
method: 'PUT' | 'POST' | 'GET' | 'DELETE'; | ||
@@ -39,3 +41,3 @@ endpoint: string; | ||
output: Output[]; | ||
argument?: pickle.Argument; | ||
argument?: string | Argument; | ||
retries?: number; | ||
@@ -42,0 +44,0 @@ state: 'pending' | 'passed' | 'skipped' | 'failed'; |
@@ -20,2 +20,7 @@ export interface Tag { | ||
} | ||
export interface Argument { | ||
rows?: { | ||
cells: string[]; | ||
}[]; | ||
} | ||
//# sourceMappingURL=types.d.ts.map |
{ | ||
"name": "@wdio/reporter", | ||
"version": "7.0.0-beta.0", | ||
"version": "7.0.0-beta.1", | ||
"description": "A WebdriverIO utility to help reporting all events", | ||
@@ -34,7 +34,7 @@ "author": "Christian Bromann <christian@saucelabs.com>", | ||
"@types/cucumber": "^6.0.1", | ||
"@wdio/types": "7.0.0-beta.0", | ||
"@wdio/types": "7.0.0-beta.1", | ||
"fs-extra": "^9.0.0" | ||
}, | ||
"types": "./build/index.d.ts", | ||
"gitHead": "bf31660d60ad4dacf04d11ff1590e794dd377dc0" | ||
"gitHead": "8d9ac36cadb5ccba689ce76173ef0545ee72df86" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
38925
597
+ Added@wdio/types@7.0.0-beta.1(transitive)
- Removed@wdio/types@7.0.0-beta.0(transitive)
Updated@wdio/types@7.0.0-beta.1