UNPKG

testeranto

Version:

the AI powered BDD test framework for typescript projects

16 lines (15 loc) 901 B
import { IBuiltConfig, IRunTime, ITestTypes } from "./Types"; import { IRunnables } from "./lib"; export declare const destinationOfRuntime: (f: string, r: IRunTime, configs: IBuiltConfig) => string; export declare const tscPather: (entryPoint: string, platform: IRunTime, projectName: string) => string; export declare const lintPather: (entryPoint: string, platform: IRunTime, projectName: string) => string; export declare const bddPather: (entryPoint: string, platform: IRunTime, projectName: string) => string; export declare const promptPather: (entryPoint: string, platform: IRunTime, projectName: string) => string; export declare const getRunnables: (tests: ITestTypes[], projectName: string, payload?: { nodeEntryPoints: {}; nodeEntryPointSidecars: {}; webEntryPoints: {}; webEntryPointSidecars: {}; pureEntryPoints: {}; pureEntryPointSidecars: {}; }) => IRunnables;