UNPKG

cucumon

Version:

Cucumber Gherkin Feature file parser with custom additional features

13 lines (11 loc) 317 B
class Step{ constructor(keyword, statement, ln, scenarioId){ this.keyword = keyword; this.statement = statement; this.lineNumber = ln; this.scenarioId = scenarioId; //this can be either dataTable, docString, or null this.arg = null; } } module.exports = Step;