Files
xahau.js/test/integration/finalTest.ts
Mukul Jangid 8feafb216d refactor: waits on closing test to end tests (#1748)
* refactor: waits on closing test to end tests
2021-10-19 16:18:07 -04:00

14 lines
302 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('test', function () {
this.timeout(TIMEOUT)
it('closing test', function () {
assert(true)
})
})