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
+11
View File
@@ -0,0 +1,11 @@
import Index from "./index";
test('test uncovered if', () => {
const indexObj = new Index();
expect(indexObj.uncovered_if()).toEqual(false);
});
test('fully covered', () => {
const indexObj = new Index();
expect(indexObj.fully_covered()).toEqual(true);
});