bedrock-protocol/test/internal.test.js
2021-03-26 04:48:18 -04:00

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