UNPKG

@zombienet/orchestrator

Version:

ZombieNet aim to be a testing framework for substrate based blockchains, providing a simple cli tool that allow users to spawn and test ephemeral Substrate based networks

7 lines (6 loc) 461 B
import { LogType } from "@zombienet/utils"; import { TestDefinition } from "../types"; export interface BackchannelMap { [propertyName: string]: any; } export declare function run(configBasePath: string, testName: string, testDef: TestDefinition, provider: string, inCI: boolean | undefined, concurrency: number | undefined, logType: LogType | undefined, runningNetworkSpecPath: string | undefined, dir: string | undefined, force?: boolean): Promise<void>;