mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-23 20:27:02 +08: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);
|
|
});
|