Added initial Mocha testing setup
All checks were successful
continuous-integration/drone the build was successful
All checks were successful
continuous-integration/drone the build was successful
This commit is contained in:
parent
d381b636c8
commit
d557d45862
7 changed files with 474 additions and 34 deletions
8
web/tests/example.ts
Normal file
8
web/tests/example.ts
Normal 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')
|
||||
})
|
||||
})
|
||||
Reference in a new issue