bedrock-protocol/test/vanilla.test.js
2021-03-23 03:28:50 -04:00

14 lines
320 B
JavaScript

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