@cucumber/cucumber
Version:
The official JavaScript implementation of Cucumber.
18 lines (17 loc) • 580 B
TypeScript
/**
* 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 { IRunEnvironment } from '../environment';
export { IPickleOrder } from '../filter';
export { IPublishConfig } from '../publish';
export * from './load_configuration';
export * from './load_sources';
export * from './load_support';
export * from './run_cucumber';
export * from './types';