mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-10 07:45:49 +00:00
Right now we have 5 testing library dependencies. This eliminates `assert`. `jest`, `jasmine`, `chai` and `karma` are the remaining ones.
16 lines
317 B
TypeScript
16 lines
317 B
TypeScript
import { assert } from 'chai'
|
|
|
|
// how long before each test case times out
|
|
const TIMEOUT = 20000
|
|
|
|
// the purpose of this file is to indicate the end of tests and not really test anything.
|
|
describe('closing test', function () {
|
|
it(
|
|
'closing test',
|
|
function () {
|
|
assert(true)
|
|
},
|
|
TIMEOUT,
|
|
)
|
|
})
|