@yathomasi/cypress-parallel
Version:
[](https://github.com/yathomasi/cypress-parallel/actions/workflows/build.yml) [ • 597 B
TypeScript
import { CypressParallelError } from "./error";
export interface WeighedFile {
file: string;
content: string;
weight: number;
}
export interface UnweighedFile {
file: string;
content: string;
}
export interface UnweighedStrategy {
(weighedFiles: WeighedFile[], unweighedFiles: UnweighedFile[], nodeCount: number): NodeSchedule[];
}
export type NodeSchedule = (WeighedFile | UnweighedFile)[];
export declare class ConfigurationError extends CypressParallelError {
}
export declare function resolveCustomStrategy(searchFrom?: string): Promise<UnweighedStrategy | undefined>;