flagpole
Version:
Simple and fast DOM integration, headless or headful browser, and REST API testing framework.
32 lines (31 loc) • 1.97 kB
TypeScript
import { Assertion } from "./assertion";
import { AssertionContext } from "./assertioncontext";
import { AssertionResult } from "./logging/assertionresult";
import { AssertionSchema } from "./assertionschema";
import { BrowserControl } from "./puppeteer/browsercontrol";
import { BrowserResponse } from "./puppeteer/browserresponse";
import { CssResponse } from "./css/cssresponse";
import { DOMElement } from "./html/domelement";
import { ExtJSResponse } from "./puppeteer/extjsresponse";
import { HtmlResponse } from "./html/htmlresponse";
import { HttpResponse } from "./httpresponse";
import { ImageResponse } from "./imageresponse";
import { jPath, iJPath } from "./json/jpath";
import { JsonResponse } from "./json/jsonresponse";
import { ResourceResponse } from "./resourceresponse";
import { ProtoResponse } from "./response";
import { Scenario } from "./scenario";
import { ScriptResponse } from "./scriptresponse";
import { Suite } from "./suite";
import { Value } from "./value";
import { VideoResponse } from "./videoresponse";
import { Flagpole } from "./flagpole";
import { ResponseType } from "./enums";
import { iResponse, iValue, iScenario, iSuite, JsonSchema, JsonSchema_Type } from "./interfaces";
import { BrowserOptions, HttpRequest, HttpAuth } from "./httprequest";
import { FlagpoleExecution } from "./flagpoleexecution";
declare const fp: typeof Flagpole;
declare const execution: FlagpoleExecution;
declare const _default: typeof Flagpole.Suite;
export default _default;
export { Flagpole, FlagpoleExecution, Suite, Scenario, Assertion, AssertionContext, AssertionResult, JsonSchema, JsonSchema_Type, AssertionSchema, BrowserControl, BrowserOptions, BrowserResponse, CssResponse, DOMElement, ExtJSResponse, HtmlResponse, ImageResponse, JsonResponse, ResourceResponse, ResponseType, ProtoResponse, iResponse, HttpRequest, HttpResponse, HttpAuth, ScriptResponse, iValue, Value, VideoResponse, jPath, iJPath, iScenario, iSuite, fp, execution, };