UNPKG

gherkin

Version:
18 lines (15 loc) 404 B
export interface IGherkinOptions { defaultDialect?: string includeSource?: boolean includeGherkinDocument?: boolean includePickles?: boolean } const defaultOptions: IGherkinOptions = { defaultDialect: 'en', includeSource: true, includeGherkinDocument: true, includePickles: true, } export function gherkinOptions(options: IGherkinOptions) { return { ...defaultOptions, ...options } }