UNPKG

@cucumber/cucumber

Version:

The official JavaScript implementation of Cucumber.

20 lines (19 loc) 911 B
/** * JavaScript API for running and extending Cucumber * * @packageDocumentation * @module api * @remarks * These docs cover the API used for running Cucumber programmatically. The entry point is `@cucumber/cucumber/api`. */ export { IConfiguration } from '../configuration'; export { ILogger, IRunEnvironment } from '../environment'; export { IFilterablePickle, IPickleOrder } from '../filter'; export { IResolvedPaths } from '../paths'; export { CoordinatorEventKey, CoordinatorEventValues, CoordinatorEventHandler, CoordinatorTransformKey, CoordinatorTransformValues, CoordinatorTransformer, CoordinatorContext, CoordinatorEnvironment, Plugin, PluginCleanup, PluginOperation, } from '../plugin'; export { IPublishConfig } from '../publish'; export * from './load_configuration'; export * from './load_sources'; export * from './load_support'; export * from './run_cucumber'; export * from './types';