New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@wdio/types

Package Overview
Dependencies
Maintainers
3
Versions
182
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wdio/types - npm Package Compare versions

Comparing version 9.6.3 to 9.9.0

46

build/Frameworks.d.ts

@@ -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

4

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc