@types/cucumber
Advanced tools
Comparing version 3.1.1 to 3.1.2
@@ -7,5 +7,15 @@ // Type definitions for cucumber-js 3.1 | ||
// BendingBender <https://github.com/BendingBender> | ||
// ErikSchierboom <https://github.com/ErikSchierboom> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
// TypeScript Version: 2.3 | ||
// TypeScript Version: 2.4 | ||
export enum Status { | ||
AMBIGUOUS = "ambiguous", | ||
FAILED = "failed", | ||
PASSED = "passed", | ||
PENDING = "pending", | ||
SKIPPED = "skipped", | ||
UNDEFINED = "undefined" | ||
} | ||
export interface World { | ||
@@ -47,3 +57,3 @@ [key: string]: any; | ||
scenario: Scenario; | ||
status: string; | ||
status: Status; | ||
stepsResults: any; | ||
@@ -147,3 +157,3 @@ } | ||
scenario: Scenario; | ||
status: string; | ||
status: Status; | ||
stepResults: any[]; | ||
@@ -170,3 +180,3 @@ } | ||
stepDefinition: StepDefinition; | ||
status: string; | ||
status: Status; | ||
} | ||
@@ -173,0 +183,0 @@ } |
{ | ||
"name": "@types/cucumber", | ||
"version": "3.1.1", | ||
"version": "3.1.2", | ||
"description": "TypeScript definitions for cucumber-js", | ||
@@ -26,2 +26,7 @@ "license": "MIT", | ||
"githubUsername": "BendingBender" | ||
}, | ||
{ | ||
"name": "ErikSchierboom", | ||
"url": "https://github.com/ErikSchierboom", | ||
"githubUsername": "ErikSchierboom" | ||
} | ||
@@ -36,4 +41,4 @@ ], | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "9056cee71d57164bde1215478b1f56c2097b44fb7e906e8754cf159ce0fdba4e", | ||
"typeScriptVersion": "2.3" | ||
"typesPublisherContentHash": "18a3c2adbb7b8c474e52122d2d6bddbbc0fe1aa37b3708480d4579ec42d3c188", | ||
"typeScriptVersion": "2.4" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Thu, 28 Dec 2017 21:41:58 GMT | ||
* Last updated: Wed, 03 Jan 2018 08:47:03 GMT | ||
* Dependencies: none | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by Abraão Alves <https://github.com/abraaoalves>, Jan Molak <https://github.com/jan-molak>, Isaiah Soung <https://github.com/isoung>, BendingBender <https://github.com/BendingBender>. | ||
These definitions were written by Abraão Alves <https://github.com/abraaoalves>, Jan Molak <https://github.com/jan-molak>, Isaiah Soung <https://github.com/isoung>, BendingBender <https://github.com/BendingBender>, ErikSchierboom <https://github.com/ErikSchierboom>. |
10762
228