Merge: develop

This commit is contained in:
Pieter Vander Vennet 2023-06-11 02:32:14 +02:00
commit 9cffe6814e
154 changed files with 1199 additions and 41754 deletions

View file

@ -54,13 +54,13 @@ function detectInCode(forbidden: string, reason: string): Promise<void> {
})
}
function wrap(promise: Promise<void>): ((done: () => void) => void) {
return (done => {
function wrap(promise: Promise<void>): (done: () => void) => void {
return (done) => {
promise.then(done)
})
}
}
function itAsync(name: string, promise: Promise<void>){
function itAsync(name: string, promise: Promise<void>) {
it(name, wrap(promise))
}