style: apply biome formatting to test files
Made-with: Cursor
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user