@amiceli/vitest-cucumber
Version:
vitest tools to use Gherkin feature in unit tests
12 lines (11 loc) • 410 B
TypeScript
import type { ViteDevServer } from 'vite';
import type { AstOptions } from './ast/BaseAst';
type VitestCucumberPluginOptions = {
featureFilesDir: string;
specFilesDir: string;
} & Pick<AstOptions, 'onDeleteAction' | 'formatCommand'>;
export declare function VitestCucumberPlugin(options: VitestCucumberPluginOptions): {
name: string;
configureServer(server: ViteDevServer): void;
};
export {};