diff --git a/tests/4_determinant/test.js b/tests/4_determinant/test.js index b483e24..a11c7d2 100644 --- a/tests/4_determinant/test.js +++ b/tests/4_determinant/test.js @@ -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; } };