UNPKG
@rbnx/webdriverio
Version:
latest (1.6.0)
1.6.0
1.5.1
1.5.0
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
webdriverio plugin for nx
github.com/roozenboom/rbnx
@rbnx/webdriverio
/
src
/
generators
/
init
/
schema.d.ts
17 lines
(15 loc)
•
267 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
type
{
Framework
,
Protocol
,
Reporters
,
Runner
,
Services
, }
from
'../../wdio'
;
export
interface
Schema
{
runner
?:
Runner
;
framework
?:
Framework
;
reporters
?:
Reporters
[];
services
?:
Services
[];
protocol
?:
Protocol
;
skipFormat
?:
boolean
; }