MCPcopy Create free account
hub / github.com/TestSprite/testsprite-cli / remainingMs

Function remainingMs

src/commands/test.ts:2443–2446  ·  view source on GitHub ↗

Returns remaining milliseconds until the per-spec deadline, or Infinity when no deadline.

()

Source from the content-addressed store, hash-verified

2441
2442 /** Returns remaining milliseconds until the per-spec deadline, or Infinity when no deadline. */
2443 function remainingMs(): number {
2444 if (specDeadlineMs === undefined) return Infinity;
2445 return Math.max(0, specDeadlineMs - Date.now());
2446 }
2447
2448 let triggerResponse: TriggerRunResponse;
2449

Callers 1

triggerOneFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected