* Add packet dumper, configuable vanilla server, client events * Fix server/client closing * Add internal server test * protocol: use WindowID types * Add internal client/server test * test timeout fixes * client example updates * update server example, use protocol updates Server example with bedrock-provider Use 64-bit varints for entity runtime ids * fix internal test packet path
11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
/* eslint-env jest */
|
|
|
|
const { timedTest } = require('./internal')
|
|
|
|
describe('internal client/server test', function () {
|
|
this.timeout(120 * 1000)
|
|
|
|
it('connects', async () => {
|
|
await timedTest()
|
|
})
|
|
})
|