UNPKG

e2ed

Version:

E2E testing framework over Playwright

18 lines (17 loc) 492 B
/** * Main status of test run. * `Failed` if it have run error and passed if not. * Probably should never be `Broken`. */ export declare const enum TestRunStatus { Broken = "broken", Failed = "failed", Manual = "manual", Passed = "passed", Skipped = "skipped", Unknown = "unknown" } /** * Statuses, the presence of which in the retry indicates that there are failed tests in the retry. */ export declare const FAILED_TEST_RUN_STATUSES: readonly TestRunStatus[];