UNPKG

@libp2p/interface-stream-muxer-compliance-tests

Version:
11 lines 422 B
import spawn from './spawner.js'; export default (common) => { const createMuxer = async (init) => { const factory = await common.setup(); return factory.createStreamMuxer(init); }; describe.skip('mega stress test', function () { it('10,000 streams with 10,000 msg', async () => { await spawn(createMuxer, 10000, 10000, 5000); }); }); }; //# sourceMappingURL=mega-stress-test.js.map