1.16.210 fix
This commit is contained in:
parent
6b7138695e
commit
514a84fd19
5 changed files with 15 additions and 12 deletions
|
|
@ -12,6 +12,7 @@ async function test (version) {
|
|||
hostname: '127.0.0.1',
|
||||
port: 19130,
|
||||
username: 'Notch',
|
||||
version,
|
||||
offline: true
|
||||
})
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
})
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue