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 30dfbd8 commit a0cf3aeCopy full SHA for a0cf3ae
Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js
@@ -17,13 +17,11 @@ function getAngleType(angle) {
17
18
// read to the end, complete line 36, then pass your test here
19
20
- if (angle === 90) {
21
- return "Right angle";
22
- }
23
// Run the tests, work out what Case 2 is testing, and implement the required code here.
24
// Then keep going for the other cases, one at a time.
25
26
}
+console.log(getAngleType(120));
27
28
// The line below allows us to load the getAngleType function into tests in other files.
29
// This will be useful in the "rewrite tests with jest" step.
0 commit comments