This repository has been archived on 2021-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
jos/web/tests/example.ts
Jef Roosens d557d45862
All checks were successful
continuous-integration/drone the build was successful
Added initial Mocha testing setup
2021-05-18 18:33:25 +02:00

8 lines
186 B
TypeScript

import 'mocha'
import { assert } from 'chai'
describe('First Test', function () {
it('should return true', function () {
assert.equal('yeet', 'yeet', 'not equal')
})
})