@libp2p/interface-stream-muxer-compliance-tests
Version:
Compliance tests for implementations of the libp2p Stream Muxer interface
11 lines • 422 B
JavaScript
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