@alwaysmeticulous/api 2.285.1 → 2.285.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -35,6 +35,8 @@ export interface TestCaseReplayOptions extends Partial<ScreenshotDiffOptions> {
|
|
|
35
35
|
simulationIdForAssets?: string | undefined;
|
|
36
36
|
}
|
|
37
37
|
/**
|
|
38
|
+
* `PreProcessing` = the test run is undergoing some pre-processing before it can be executed.
|
|
39
|
+
*
|
|
38
40
|
* `Scheduled` = the test run has been created, and a cloud replay job has been queued to run it. It will switch to Running soon.
|
|
39
41
|
*
|
|
40
42
|
* `Running` = a worker is actively running the test run.
|
|
@@ -53,7 +55,7 @@ export interface TestCaseReplayOptions extends Partial<ScreenshotDiffOptions> {
|
|
|
53
55
|
* `ExecutionError` = the test run failed fatally, and didn't complete. To get accurate results it'll need to be re-run. The test run may shortly switch back
|
|
54
56
|
* into 'Running' in this case, if the worker retries it.
|
|
55
57
|
*/
|
|
56
|
-
export type TestRunStatus = "Scheduled" | "Running" | "Partial" | "PostProcessing" | "Success" | "Failure" | "Aborted" | "ExecutionError";
|
|
58
|
+
export type TestRunStatus = "PreProcessing" | "Scheduled" | "Running" | "Partial" | "PostProcessing" | "Success" | "Failure" | "Aborted" | "ExecutionError";
|
|
57
59
|
/**
|
|
58
60
|
* Execution of a chunk of a test run chunk.
|
|
59
61
|
*
|