All checks were successful
continuous-integration/drone the build was successful
8 lines
186 B
TypeScript
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')
|
|
})
|
|
})
|