mirror of
https://github.com/codecov/codecov-action
synced 2026-09-14 20:13:46 +00:00
12 lines
267 B
TypeScript
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);
|
|
});
|