UNPKG

pic-js-mops

Version:

An Internet Computer Protocol canister testing library for TypeScript and JavaScript.

26 lines (21 loc) 486 B
/** * Options for starting a PocketIC server. */ export interface StartServerOptions { /** * Whether to pipe the runtimes's logs to the parent process's stdout. */ showRuntimeLogs?: boolean; /** * Whether to pipe the canister logs to the parent process's stderr. */ showCanisterLogs?: boolean; /** * The time-to-live of the PocketIC server in seconds [default: 60] */ ttl?: number; /** * Path to the PocketIC binary. */ binPath?: string; }