initial commit

This commit is contained in:
Sebastian Seedorf
2020-12-03 14:17:47 +01:00
commit c94c35ea9d
9 changed files with 3850 additions and 0 deletions

9
test/index.ts Normal file
View File

@@ -0,0 +1,9 @@
import {expect} from 'chai';
import {main} from '../src';
describe('index', () => {
it('main', () => {
const res = main();
expect(res).to.be.deep.equal('Hello World');
});
});