Skip to content

Commit 74a65b7

Browse files
authored
Update WaterJugProblem.test.js
1 parent acd5296 commit 74a65b7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: Recursive/test/WaterJugProblem.test.js

+2
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,7 @@ describe('Water Jug Problem', () => {
2626
expect(() => canMeasureWater(-1, 5, 3)).toThrow('Invalid input: capacities must be non-negative.');
2727
expect(() => canMeasureWater(3, -2, 1)).toThrow('Invalid input: capacities must be non-negative.');
2828
expect(() => canMeasureWater(3, 5, -1)).toThrow('Invalid input: target amount must be non-negative.');
29+
30+
2931
});
3032
});

0 commit comments

Comments
 (0)