testeranto
Version:
the AI powered BDD test framework for typescript projects
21 lines (20 loc) • 1.1 kB
TypeScript
import { IRunnables } from "../../lib";
import { IRunTime, IBuiltConfig, ITestTypes } from "../../Types";
export declare const webEvaluator: (d: any, webArgz: any) => string;
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: {};
golangEntryPoints: {};
golangEntryPointSidecars: {};
pythonEntryPoints: {};
pythonEntryPointSidecars: {};
}) => IRunnables;