From 238d1cbb26b398ba4f0975e67e493af8478c62fe Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Thu, 13 Nov 2025 12:49:08 -0800 Subject: [PATCH] Feat: Return test result for output recording --- tests/2_convex_hull/test.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/2_convex_hull/test.js b/tests/2_convex_hull/test.js index b00630e..7f77c63 100644 --- a/tests/2_convex_hull/test.js +++ b/tests/2_convex_hull/test.js @@ -16,5 +16,6 @@ export default { const hull = await findConvexHull(points); const sortFn = (a, b) => a.x - b.x || a.y - b.y; assert.deepStrictEqual(hull.sort(sortFn), expected.sort(sortFn), "Test Failed: Convex hull points do not match."); + return hull; } };