Fix E2E testing

This commit is contained in:
Andras Schmelczer 2025-11-27 21:29:55 +00:00
parent 82f11d8c86
commit d45d2c0be3
2 changed files with 38 additions and 30 deletions

View file

@ -82,7 +82,7 @@ async function runTest({
// then we need a second pass to ensure that all agents pull the same state.
for (const client of clients) {
try {
await client.finish();
await client.destroy();
} catch (err) {
if (!slowFileEvents) {
throw err;
@ -116,17 +116,17 @@ async function runTest({
}
async function runTests(): Promise<void> {
await runTest({
agentCount: 2,
concurrency: 16,
iterations: 100,
doDeletes: true,
doResets: true,
useSlowFileEvents: true,
jitterScaleInSeconds: 0.75
});
for (let i = 0; i < TEST_ITERATIONS; i++) {
await runTest({
agentCount: 2,
concurrency: 16,
iterations: 100,
doDeletes: true,
doResets: true,
useSlowFileEvents: true,
jitterScaleInSeconds: 0.75
});
for (const useSlowFileEvents of [false, true]) {
for (const concurrency of [
16,