@wdio/types
Advanced tools
Comparing version 9.6.3 to 9.9.0
@@ -77,3 +77,3 @@ export interface Suite { | ||
/** | ||
* Info on of a pick (step) | ||
* Info of a pickle (step) | ||
*/ | ||
@@ -96,4 +96,46 @@ export interface PickleStep { | ||
*/ | ||
keyword: string; | ||
keyword: 'Given ' | 'When ' | 'Then ' | 'And '; | ||
} | ||
/** | ||
* Info of a cucumber tag | ||
*/ | ||
export interface Tag { | ||
/** | ||
* name of the tag | ||
*/ | ||
name: string; | ||
/** | ||
* line number in the feature file | ||
*/ | ||
astNodeId: string; | ||
} | ||
/** | ||
* Info of a cucumber scenario | ||
*/ | ||
export interface Scenario { | ||
/** | ||
* line number in the feature file | ||
*/ | ||
id: string; | ||
/** | ||
* uri of the feature file | ||
*/ | ||
uri: string; | ||
/** | ||
* name of the scenario | ||
*/ | ||
name: string; | ||
/** | ||
* Array of line numbers | ||
*/ | ||
astNodeIds: string[]; | ||
/** | ||
* Array of steps | ||
*/ | ||
steps: PickleStep[]; | ||
/** | ||
* Array of tags | ||
*/ | ||
tags: Tag[]; | ||
} | ||
//# sourceMappingURL=Frameworks.d.ts.map |
{ | ||
"name": "@wdio/types", | ||
"version": "9.6.3", | ||
"version": "9.9.0", | ||
"description": "Utility package providing type information for a variety of WebdriverIO interfaces", | ||
@@ -37,3 +37,3 @@ "author": "Christian Bromann <mail@bromann.dev>", | ||
}, | ||
"gitHead": "b3371191bb85dba78b26c1640d19e5a42aff755c" | ||
"gitHead": "620e092391d7bcc71cd7cd55ad146ad72e522da9" | ||
} |
Sorry, the diff of this file is not supported yet
158480
2935