diff --git a/packages/pulse/src/e2e/t9-int-id.test.ts b/packages/pulse/src/e2e/t9-int-id.test.ts index 1dc7ce1..79f6113 100644 --- a/packages/pulse/src/e2e/t9-int-id.test.ts +++ b/packages/pulse/src/e2e/t9-int-id.test.ts @@ -480,9 +480,10 @@ describe('E2E T9: INT ID through rebuildSnapshot + rules', () => { const pulse = composeRules([testRule]); const prev: Snap = { timestamp: Date.now() - 1000 }; - const curr = await rebuildSnapshot({ system: store, vitals: vitalsStore }, [ - 'system', - ]); + const curr = await rebuildSnapshot( + { system: store, vitals: vitalsStore }, + ['system'], + ); const [effects, tickMs] = await pulse(prev, curr); expect(effects.some((e) => e.type === 'alert')).toBe(true); diff --git a/packages/pulse/src/workflows/coding.test.ts b/packages/pulse/src/workflows/coding.test.ts index 280450f..7547270 100644 --- a/packages/pulse/src/workflows/coding.test.ts +++ b/packages/pulse/src/workflows/coding.test.ts @@ -232,7 +232,9 @@ describe('CodingTask WorkflowType', () => { ); await rule.tick(); - expect((await logStore.queryByKind('coding.role-started')).length).toBe(1); + expect((await logStore.queryByKind('coding.role-started')).length).toBe( + 1, + ); expect((await logStore.queryByKind('coding.role-completed')).length).toBe( 1, );