Skip to content

Commit 155127d

Browse files
committed
2-is-proper-fraction.test.js committed
1 parent 273d39f commit 155127d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@ test(`should return false when denominator is zero`, () => {
1212
expect(isProperFraction(1, 0)).toEqual(false);
1313
});
1414
*
15+
* End of original file
1516
*/
1617

1718
// This statement loads the isProperFraction function written in the implement directory.
1819
const isProperFraction = require("../implement/2-is-proper-fraction");
1920

20-
// TODO: Write tests in Jest syntax to cover all combinations of positives, negatives, zeros, and other categories.
21+
// TODO: Tests in Jest syntax covering all combinations of positives, negatives, zeros, and other categories.
2122

2223
describe('isProperFraction', () => {
2324
// Test 1: Proper fractions with positive numbers

0 commit comments

Comments
 (0)