This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
jos/web/tests/example.ts

9 lines
186 B
TypeScript
Raw Normal View History

2021-05-18 18:29:20 +02:00
import 'mocha'
import { assert } from 'chai'
describe('First Test', function () {
it('should return true', function () {
assert.equal('yeet', 'yeet', 'not equal')
})
})