UNPKG

libp2p-interfaces-compliance-tests

Version:
18 lines (13 loc) 360 B
// @ts-nocheck interface tests /* eslint-env mocha */ 'use strict' const spawn = require('./spawner') module.exports = (common) => { describe.skip('mega stress test', function () { let Muxer beforeEach(async () => { Muxer = await common.setup() }) it('10,000 streams with 10,000 msg', () => spawn(Muxer, 10000, 10000, 5000)) }) }