bedrock-protocol/test/vanilla.test.js
extremeheat f530677245
Option to use JS implementation of RakNet, fix 1.17.10 issue (#110)
* 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
2021-07-17 05:30:13 -04:00

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)
})
}
})