We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b9d4b7 commit dc87b9aCopy full SHA for dc87b9a
tests/blank.test.ts
@@ -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