9 lines
186 B
TypeScript
9 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')
|
||
|
})
|
||
|
})
|