We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11efcb1 commit d440aafCopy full SHA for d440aaf
Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/2-is-proper-fraction.test.js
@@ -1,6 +1,6 @@
1
// This statement loads the isProperFraction function you wrote in the implement directory.
2
// 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");
+const isProperFraction = require("../implement/2-is-proper-fraction"); // The path
4
5
test("should return true for a proper fraction", () => {
6
expect(isProperFraction(2, 3)).toEqual(true);
0 commit comments