flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
21 lines (20 loc) • 1.06 kB
TypeScript
export declare type ScenarioDisposition = "pending" | "executing" | "completed" | "skipped" | "cancelled" | "aborted";
export declare enum ScenarioStatusEvent {
beforeExecute = "beforeExecute",
executionStart = "executionStart",
executionSkipped = "executionSkipped",
executionCancelled = "executionCancelled",
executionAborted = "executionAborted",
executionProgress = "executionProgress",
afterExecute = "afterExecute",
finished = "finished"
}
export declare enum SuiteStatusEvent {
beforeAllExecute = "beforeAllExecute",
beforeEachExecute = "beforeEachExecute",
afterEachExecute = "afterEachExecute",
afterAllExecute = "afterAllExecute",
finished = "finished"
}
export declare type ResponseType = "html" | "json" | "image" | "stylesheet" | "script" | "video" | "audio" | "resource" | "browser" | "extjs" | "xml" | "rss" | "atom";
export declare type LineType = "resultPass" | "resultFailure" | "resultOptionalFailure" | "comment" | "detail" | "h1" | "h2" | "h3" | "decoration" | "debugInfo" | "summaryData";