UNPKG

cucumber-steps-parser

Version:

A utility to parse the cucumber steps defined in the corresponding step definition files

19 lines (18 loc) 297 B
/** * Cucumber dataTable format. E.g: for the cucumber table * * | A1 | B1 | * | A2 | B2 | * * the corresponding dataTable object will be: * * { * rawTable: [ * [ 'A1', 'B1' ], * [ 'A2', 'B2' ] * ] * } */ export interface ICucumberDataTable { rawTable: string[][]; }