UNPKG

@kodamc/protocol

Version:
18 lines (14 loc) 470 B
/* eslint-env jest */ const { clientTest } = require('./vanilla') const { testedVersions } = require('../src/options') const { sleep } = require('../src/datatypes/util') describe('vanilla server test', function () { const vcount = testedVersions.length this.timeout(vcount * 80 * 1000) for (const version of testedVersions) { it('client spawns ' + version, async () => { await clientTest(version) await sleep(100) }) } })