diff --git a/packages/test-utils/src/reporter.ts b/packages/test-utils/src/reporter.ts index 2725690c..841977a8 100644 --- a/packages/test-utils/src/reporter.ts +++ b/packages/test-utils/src/reporter.ts @@ -954,6 +954,9 @@ class ReplayReporter, executionGroupId: string ) { + if (this._uploadStatusThreshold === "none") { + return; + } const executions = result.executions[executionGroupId]; const latestExecution = last(executions); assert(!!latestExecution, "Expected at least one execution in the list");