Files
xahau.js/packages/xahau/test/integration/finalTest.test.ts
Denis Angell 9544e1794e xahau-patch
2025-03-14 15:08:35 +01:00

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,
)
})