Feat: Return test result for output recording

This commit is contained in:
2025-11-13 12:49:11 -08:00
parent 238d1cbb26
commit e6fa9c76db

View File

@@ -12,5 +12,6 @@ export default {
const nums = [10, 9, 2, 5, 3, 7, 101, 18, 4, 6];
const length = await findLISLength(nums);
assert.strictEqual(length, 4, "Test Failed: LIS length should be 4.");
return length;
}
};