Skip to content

Commit dc87b9a

Browse files
committed
add test
1 parent 2b9d4b7 commit dc87b9a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/blank.test.ts

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// write a mocha chai typescript hello world test
2+
import { expect } from 'chai';
3+
4+
// there must be on test to pass CI
5+
describe('tests', () => {
6+
it('should run', () => {
7+
expect(true).to.be.true;
8+
});
9+
});

0 commit comments

Comments
 (0)