Skip to content

Commit 8accc29

Browse files
committed
The test is passed for negative denominator fraction.
1 parent 5c8aac3 commit 8accc29

File tree

3 files changed

+4426
-1
lines changed

3 files changed

+4426
-1
lines changed

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

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

99
// Case 2: Identify Improper Fractions:
10-
est("should return false for improper fractions", () => {
10+
test("should return false for improper fractions", () => {
1111
const improperFraction = isProperFraction(5, 2);
1212
expect(improperFraction).toEqual(false);
1313
});

0 commit comments

Comments
 (0)