MCPcopy Create free account
hub / github.com/callstack/agent-device / isReplayTestCompletionProgressEvent

Function isReplayTestCompletionProgressEvent

src/replay/test/progress.ts:253–259  ·  view source on GitHub ↗
(event: ReplayTestResult)

Source from the content-addressed store, hash-verified

251}
252
253function isReplayTestCompletionProgressEvent(event: ReplayTestResult): boolean {
254 return (
255 event.status === 'pass' ||
256 event.status === 'skip' ||
257 (event.status === 'fail' && !event.retrying)
258 );
259}
260
261function replayTestCompletionProgressKey(event: ReplayTestResult): string {
262 const shard = typeof event.shardIndex === 'number' ? event.shardIndex : '';

Callers 1

renderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…