This commit is contained in:
Andras Schmelczer 2025-11-23 20:27:16 +00:00
commit 18be9f4dd8
19 changed files with 300 additions and 225 deletions

View file

@ -53,10 +53,12 @@ async function runTest({
}
try {
// eslint-disable-next-line no-restricted-properties
await Promise.all(clients.map(async (client) => client.init()));
for (let i = 0; i < iterations; i++) {
console.info(`Iteration ${i + 1}/${iterations}`);
// eslint-disable-next-line no-restricted-properties
await Promise.all(clients.map(async (client) => client.act()));
await sleep(100);
}