mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-20 12:15:51 +00:00
16 lines
315 B
TypeScript
16 lines
315 B
TypeScript
import assert from 'assert'
|
|
|
|
// 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,
|
|
)
|
|
})
|