e2ed
Version:
E2E testing framework over Playwright
22 lines (21 loc) • 371 B
TypeScript
/**
* 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
}