1.16.210 fix

This commit is contained in:
extremeheat 2021-03-21 16:03:24 -04:00
commit 514a84fd19
5 changed files with 15 additions and 12 deletions

View file

@ -12,6 +12,7 @@ async function test (version) {
hostname: '127.0.0.1',
port: 19130,
username: 'Notch',
version,
offline: true
})

View file

@ -3,11 +3,12 @@
const { clientTest } = require('./vanilla')
const { Versions } = require('../src/options')
describe('vanilla server test', function () {
describe ('vanilla server test', function () {
this.timeout(120 * 1000)
it('client spawns', async () => {
for (const version in Versions) {
await clientTest(version)
}
})
for (const version in Versions) {
it('client spawns ' + version, async () => {
await clientTest(version)
})
}
})