UNPKG

cucumon

Version:

Cucumber Gherkin Feature file parser with custom additional features

12 lines (10 loc) 303 B
const Section = require('./Section'); class Background extends Section { constructor(statement, description, lineNumber){ super("Background",statement, lineNumber); this.id = -1; this.description = description; this.steps = []; } } module.exports = Background;