mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 13:53:12 +00:00
* chore: add throughput reliability tests * chore: add capability to run all * chore: add network-latency reliability tests * chore: add network-latency reliability tests * chore: add other network reliability tests * chore: add other network reliability tests * chore: fix tc cleanup * chore: refactor common code * chore: refactor common code * chore: refactor common code * chore: refactor common code * chore: refactor common code * chore: refactor common code * chore: refactor common code * chore: fix * chore: fix tests * chore: fix tests
17 lines
465 B
TypeScript
17 lines
465 B
TypeScript
import { runTest, setupTest } from "./sharedTestUtils.js";
|
|
|
|
describe("High Throughput Messaging", function () {
|
|
const testDurationMs = 20 * 60 * 1000; // 20 minutes
|
|
const testContext = {};
|
|
|
|
setupTest(this, testContext);
|
|
|
|
runTest({
|
|
testContext: testContext,
|
|
testDurationMs: testDurationMs,
|
|
testName: "High Throughput Messaging",
|
|
messageGenerator: (messageId: number) => `High-Throughput-${messageId}`,
|
|
delayBetweenMessagesMs: 0
|
|
});
|
|
});
|