MCPcopy Create free account
hub / github.com/devaccuracy/ledgerforge / fetchRunDetail

Function fetchRunDetail

tests/loadtest/tools/dashboard/app.js:200–206  ·  view source on GitHub ↗
(runId)

Source from the content-addressed store, hash-verified

198}
199
200async function fetchRunDetail(runId) {
201 const response = await fetch(`/api/runs/${encodeURIComponent(runId)}`, { cache: "no-store" });
202 if (!response.ok) {
203 throw new Error(`Failed to load run ${runId}`);
204 }
205 return response.json();
206}
207
208async function ensureRunDetail(runId) {
209 if (state.selectedSource === "api" && state.currentRun?.id === runId) {

Callers 1

ensureRunDetailFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected