Files
codecov-action/src/index/index.test.ts
2020-07-09 23:07:34 -04:00

12 lines
267 B
TypeScript

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);
});