Skip to content

Commit d25945b

Browse files
authored
2-is-proper-fraction.test.js
1 parent ea944a1 commit d25945b

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,7 @@ test("should return true for a proper fraction", () => {
77
});
88

99
// Case 2: Identify Improper Fractions:
10-
test("should return false for an improper fraction", () => {
11-
expect(isProperFraction(5, 2)).toEqual(false);
12-
});
1310

1411
// Case 3: Identify Negative Fractions:
15-
test("should return false for a negative fraction", () => {
16-
expect(isProperFraction(-1, 2)).toEqual(true);
17-
});
1812

1913
// Case 4: Identify Equal Numerator and Denominator:
20-
test("should return false for equal numerator and denominator", () => {
21-
expect(isProperFraction(3, 3)).toEqual(false);
22-
});

0 commit comments

Comments
 (0)