diff --git a/tests/blank.test.ts b/tests/blank.test.ts new file mode 100644 index 0000000..808bb37 --- /dev/null +++ b/tests/blank.test.ts @@ -0,0 +1,9 @@ +// write a mocha chai typescript hello world test +import { expect } from 'chai'; + +// there must be on test to pass CI +describe('tests', () => { + it('should run', () => { + expect(true).to.be.true; + }); +}); \ No newline at end of file