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 121ebe4 commit b46a6d3Copy full SHA for b46a6d3
Sprint-3/1-implement-and-rewrite-tests/rewrite-tests-with-jest/1-get-angle-type.test.js
@@ -4,6 +4,7 @@ const getAngleType = require("../implement/1-get-angle-type");
4
5
test("should identify right angle (90°)", () => {
6
expect(getAngleType(90)).toEqual("Right angle");
7
+ expect(getAngleType(90.0)).toEqual("Right angle");
8
});
9
10
// REPLACE the comments with the tests
0 commit comments