style: apply biome formatting to test files

Made-with: Cursor
This commit is contained in:
2026-04-18 03:16:27 +00:00
parent 125aafaa12
commit 0b2f3073b5
2 changed files with 7 additions and 4 deletions
+4 -3
View File
@@ -480,9 +480,10 @@ describe('E2E T9: INT ID through rebuildSnapshot + rules', () => {
const pulse = composeRules<Snap, Eff>([testRule]);
const prev: Snap = { timestamp: Date.now() - 1000 };
const curr = await rebuildSnapshot<Snap>({ system: store, vitals: vitalsStore }, [
'system',
]);
const curr = await rebuildSnapshot<Snap>(
{ system: store, vitals: vitalsStore },
['system'],
);
const [effects, tickMs] = await pulse(prev, curr);
expect(effects.some((e) => e.type === 'alert')).toBe(true);
+3 -1
View File
@@ -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,
);