Added initial Mocha testing setup
All checks were successful
continuous-integration/drone the build was successful

This commit is contained in:
Jef Roosens 2021-05-18 18:29:20 +02:00
parent d381b636c8
commit d557d45862
Signed by: Jef Roosens
GPG key ID: 955C0660072F691F
7 changed files with 474 additions and 34 deletions

8
web/tests/example.ts Normal file
View file

@ -0,0 +1,8 @@
import 'mocha'
import { assert } from 'chai'
describe('First Test', function () {
it('should return true', function () {
assert.equal('yeet', 'yeet', 'not equal')
})
})