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 028ec7d commit 6bcf17aCopy full SHA for 6bcf17a
Sprint-3/1-implement-and-rewrite-tests/implement/1-get-angle-type.js
@@ -13,7 +13,7 @@ function getAngleType(angle) {
13
}
14
15
if (angle === 0) {
16
- return "Acute angle";
+ return "Acute angle";
17
} else if (angle < 90) {
18
return "Acute angle";
19
} else if (angle === 90) {
@@ -31,8 +31,6 @@ function getAngleType(angle) {
31
return "Invalid angle";
32
33
34
-
35
36
// The line below allows us to load the getAngleType function into tests in other files.
37
// This will be useful in the "rewrite tests with jest" step.
38
module.exports = getAngleType;
0 commit comments