@odla-ai/harness 0.11.16 → 0.11.17
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.
- package/dist/{chunk-BOYUPB3P.js → chunk-RDCU4PIP.js} +6 -3
- package/dist/{chunk-BOYUPB3P.js.map → chunk-RDCU4PIP.js.map} +1 -1
- package/dist/code-runtime-cli.cjs +2 -2
- package/dist/code-runtime-cli.cjs.map +1 -1
- package/dist/code-runtime-cli.js +1 -1
- package/dist/node.cjs +8 -2
- package/dist/node.cjs.map +1 -1
- package/dist/node.d.cts +11 -1
- package/dist/node.d.ts +11 -1
- package/dist/node.js +7 -1
- package/dist/node.js.map +1 -1
- package/package.json +1 -1
|
@@ -1386,8 +1386,8 @@ function describeGateFailure(evidence) {
|
|
|
1386
1386
|
const output = `${log?.stdout ?? ""}
|
|
1387
1387
|
${log?.stderr ?? ""}`.trim();
|
|
1388
1388
|
const named = describeTapFailures(output);
|
|
1389
|
-
return `${
|
|
1390
|
-
|
|
1389
|
+
return `${named ? `${named}
|
|
1390
|
+
` : ""}${recipe2.recipeId}=${recipe2.status}${output ? `
|
|
1391
1391
|
${gateOutput(output)}` : ""}`;
|
|
1392
1392
|
}).join("\n\n");
|
|
1393
1393
|
return `Clean verification failed. Fix this and checkpoint again:
|
|
@@ -4220,6 +4220,9 @@ export {
|
|
|
4220
4220
|
recipeOutput,
|
|
4221
4221
|
runContainerCommand,
|
|
4222
4222
|
verifyCodeCandidate,
|
|
4223
|
+
MAX_TAP_FAILURES,
|
|
4224
|
+
extractTapFailingTests,
|
|
4225
|
+
describeTapFailures,
|
|
4223
4226
|
prepareRuntimeCheckpoint,
|
|
4224
4227
|
describeGateFailure,
|
|
4225
4228
|
CodeRuntimeCheckpointManager,
|
|
@@ -4256,4 +4259,4 @@ export {
|
|
|
4256
4259
|
withProofRecipes,
|
|
4257
4260
|
TheseusRuntimeEngine
|
|
4258
4261
|
};
|
|
4259
|
-
//# sourceMappingURL=chunk-
|
|
4262
|
+
//# sourceMappingURL=chunk-RDCU4PIP.js.map
|