UNPKG

flagpole

Version:

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

12 lines (11 loc) 367 B
import { iConsoleLine, iSuite } from "../interfaces"; export declare class FlagpoleReport { readonly suite: iSuite; constructor(suite: iSuite); toConsole(): Promise<iConsoleLine[]>; toJson(): Promise<any>; toHTML(): Promise<string>; toDelimited(format: string): Promise<string[]>; print(): Promise<any>; toString(): Promise<string>; }