Skip to content

Commit d440aaf

Browse files
committed
Passed isProperFraction test
1 parent 11efcb1 commit d440aaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-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
@@ -1,6 +1,6 @@
11
// This statement loads the isProperFraction function you wrote in the implement directory.
22
// We will use the same function, but write tests for it using Jest in this file.
3-
const isProperFraction = require("../implement/2-is-proper-fraction");
3+
const isProperFraction = require("../implement/2-is-proper-fraction"); // The path
44

55
test("should return true for a proper fraction", () => {
66
expect(isProperFraction(2, 3)).toEqual(true);

0 commit comments

Comments
 (0)