UNPKG

flagpole

Version:

Simple and fast DOM integration, headless or headful browser, and REST API testing framework.

13 lines (12 loc) 383 B
import { Suite } from "./suite"; import { iLogLine } from "./consoleline"; export declare class FlagpoleReport { readonly suite: Suite; constructor(suite: Suite); getLines(): Promise<iLogLine[]>; toConsoleString(): Promise<string>; toRawString(): Promise<string>; toJson(): Promise<any>; toHTML(): Promise<string>; print(): Promise<FlagpoleReport>; }