diff --git a/README.md b/README.md index ee9e752..cb8e952 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +Just adding some content so I can create a commit + # TypeScript-Standard [![Workflow for Typescript Standard Action](https://github.com/codecov/typescript-standard/actions/workflows/typescript-standard.yml/badge.svg)](https://github.com/codecov/typescript-standard/actions/workflows/typescript-standard.yml) [![codecov](https://codecov.io/gh/codecov/TypeScript-Standard/branch/master/graph/badge.svg)](https://codecov.io/gh/codecov/TypeScript-Standard) diff --git a/src/index.test.ts b/src/index.test.ts index 71e1fa4..e21f821 100644 --- a/src/index.test.ts +++ b/src/index.test.ts @@ -2,10 +2,10 @@ import Index from "./index"; test('test uncovered if', () => { const indexObj = new Index(); - expect(indexObj.uncovered_if()).toEqual(false); + expect(indexObj.uncovered_if(false)).toEqual(false); }); -test('fully covered', () => { +test('test uncovered if', () => { const indexObj = new Index(); - expect(indexObj.fully_covered()).toEqual(true); -}); \ No newline at end of file + expect(indexObj.uncovered_if()).toEqual(false); +}); diff --git a/src/index.ts b/src/index.ts index 1f7f5d5..2824815 100644 --- a/src/index.ts +++ b/src/index.ts @@ -18,7 +18,10 @@ export default class Index { uncovered = () => { return true } - + + cool_new_func = () => { + return false + } } // new lines for a commit