Feat: Return test result for output recording

This commit is contained in:
2025-11-13 12:49:14 -08:00
parent e6fa9c76db
commit 851c07845d

View File

@@ -12,5 +12,6 @@ export default {
const matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];
const det = await calculateDeterminant(matrix);
assert.strictEqual(det, 0, "Test Failed: Determinant should be 0.");
return det;
}
};