fbarbu15 c1f9471cd7
chore: extra reliability tests 2 (#2450)
* 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
2025-07-29 10:17:43 +03:00

17 lines
430 B
TypeScript

import { runTest, setupTest } from "./sharedTestUtils.js";
describe("Longevity", function () {
const testDurationMs = 2 * 60 * 60 * 1000; // 2 hours
const testContext = {};
setupTest(this, testContext);
runTest({
testContext: testContext,
testDurationMs: testDurationMs,
testName: "Longevity",
messageGenerator: (messageId: number) => `Longevity-${messageId}`,
delayBetweenMessagesMs: 400
});
});