From 8d25d662e149a15e4dc880495f6acbb4d788c78f Mon Sep 17 00:00:00 2001 From: Daniel Sutton Date: Fri, 21 Aug 2026 22:29:13 +0100 Subject: [PATCH] style(run-engine): wrap bench test lines over printWidth --- .../engine/bench/waitpointCoordinator.bench.test.ts | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/internal-packages/run-engine/src/engine/bench/waitpointCoordinator.bench.test.ts b/internal-packages/run-engine/src/engine/bench/waitpointCoordinator.bench.test.ts index dcce73074..01393ba4f 100644 --- a/internal-packages/run-engine/src/engine/bench/waitpointCoordinator.bench.test.ts +++ b/internal-packages/run-engine/src/engine/bench/waitpointCoordinator.bench.test.ts @@ -122,8 +122,12 @@ containerTest( const env = await setupAuthenticatedEnvironment(prisma, "PRODUCTION"); const store = new WaitpointStoreCoordinator({ redisOptions }); const samples: Sample[] = []; - const registerCost: Array<{ width: number; p50Ms: number; p99Ms: number; perEdgeMsP50: number }> = - []; + const registerCost: Array<{ + width: number; + p50Ms: number; + p99Ms: number; + perEdgeMsP50: number; + }> = []; try { const ids = Array.from({ length: FANIN }, (_, i) => `bench_w_${i}`); @@ -132,7 +136,10 @@ containerTest( // measures an index probe against nothing. await insertWaitpoints(prisma, ids, env.id, env.project.id); for (const id of ids) { - await store.createIfAbsent({ record: record(id, env.id, env.project.id), status: "PENDING" }); + await store.createIfAbsent({ + record: record(id, env.id, env.project.id), + status: "PENDING", + }); } await store.registerBlocks({ runId: "bench_run_fanin",