UNPKG

testplane

Version:

Tests framework based on mocha and wdio

13 lines (12 loc) 404 B
declare const LOG_OPTIONS: unique symbol; export interface LogOptions { timestamp?: boolean; prefixEachLine?: string; } export declare function withLogOptions(opts: LogOptions): { [LOG_OPTIONS]: LogOptions; }; export declare const log: (...args: unknown[]) => void; export declare const warn: (...args: unknown[]) => void; export declare const error: (...args: unknown[]) => void; export {};