* Default to JS implementation of RakNet * update server also, adjust test timeout based on number of versions * 1.17.10: fix texture pack issue, keep raknet default at C++ * force_build
15 lines
374 B
JavaScript
15 lines
374 B
JavaScript
/* eslint-env jest */
|
|
|
|
const { clientTest } = require('./vanilla')
|
|
const { Versions } = require('../src/options')
|
|
|
|
describe('vanilla server test', function () {
|
|
const vcount = Object.keys(Versions).length
|
|
this.timeout(vcount * 80 * 1000)
|
|
|
|
for (const version in Versions) {
|
|
it('client spawns ' + version, async () => {
|
|
await clientTest(version)
|
|
})
|
|
}
|
|
})
|