fix gc timeout

This commit is contained in:
Kevin Jahns
2017-05-24 16:34:57 +02:00
parent 2ea163a5cf
commit 68c417fe6f
4 changed files with 9 additions and 7 deletions

View File

@@ -55,6 +55,9 @@ export async function compareUsers (t, users) {
t.compare(data[i].ss, data[i + 1].ss, 'ss')
}, `Compare user${i} with user${i + 1}`)
}
await Promise.all(users.map(async (u) => {
await u.close()
}))
}
export async function initArrays (t, opts) {

View File

@@ -1,5 +1,4 @@
/* global Y */
import { wait } from './helper.js'
var rooms = {}