This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
|
import 'mocha'
|
|
import { assert } from 'chai'
|
|
|
|
describe('First Test', function () {
|
|
it('should return true', function () {
|
|
assert.equal('yeet', 'yeet', 'not equal')
|
|
})
|
|
})
|