Specify files and add testing

This commit is contained in:
Thomas Hu
2020-07-09 23:07:34 -04:00
parent f3570723ef
commit 89692c91b7
12 changed files with 6117 additions and 230 deletions
+21
View File
@@ -0,0 +1,21 @@
export default class Index {
//This function is tested and part of it is uncovered
uncovered_if = (a = true) => {
if (a == true) {
return false
} else {
return true
}
}
//This function will be fully covered
fully_covered = () => {
return true
}
//This function will not be tested by unit tests
uncovered = () => {
return true
}
}