e2ed
Version:
E2E testing framework over Playwright
26 lines (25 loc) • 507 B
TypeScript
/**
* Message of log for backend responses.
*/
export declare const BACKEND_RESPONSES_LOG_MESSAGE = "Got a backend responses to log";
/**
* Status of `LogEvent`.
*/
export declare const enum LogEventStatus {
Failed = "failed",
Passed = "passed"
}
/**
* Type of `LogEvent`.
*/
export declare const enum LogEventType {
Action = 1,
Assert = 2,
Entity = 3,
Util = 4,
InternalAction = 5,
InternalAssert = 6,
InternalCore = 7,
InternalUtil = 8,
Unspecified = 9
}