Feat: Return test result for output recording

This commit is contained in:
2025-11-13 12:48:59 -08:00
parent 7f8931af00
commit 94e9f9db94

View File

@@ -15,5 +15,6 @@ export default {
};
const dist = await findShortestPath(graph, 'A', 'F');
assert.strictEqual(dist, 7, "Test Failed: Path A to F should be 7.");
return dist;
}
};