mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-20 20:25:48 +00:00
feat: Jest Test Runner (#2170)
This commit is contained in:
@@ -4,10 +4,12 @@ import assert from 'assert'
|
||||
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)
|
||||
})
|
||||
describe('closing test', function () {
|
||||
it(
|
||||
'closing test',
|
||||
function () {
|
||||
assert(true)
|
||||
},
|
||||
TIMEOUT,
|
||||
)
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user