6.0.17-2 • Published 5 years ago

@devniel/gherkin v6.0.17-2

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Build Status

Gherkin parser/compiler for JavaScript. Please see Gherkin for details.

Usage

const gherkin = require('gherkin')

const options = {
  includeSource: true,
  includeGherkinDocument: true,
  includePickles: true,
}
const stream = gherkin.fromPaths(['features/hello.feature'])

// Pipe the stream to another stream that can read messages.
stream.pipe(...)