Files
xahau.js/packages/xrpl/test/integration/finalTest.test.ts
Caleb Kniffen 134924c395 feat: remove assert library as a testing dep (#2563)
Right now we have 5 testing library dependencies. This eliminates
`assert`. `jest`, `jasmine`, `chai` and `karma` are the remaining ones.
2024-02-01 13:53:40 -06: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,
)
})