fix: correct stale test assertion in cursor-agent.test.ts
CI / test (push) Has been cancelled

The test was checking for 'Bug Fix' but the mock data has title: 'Fix bug' and the prompt builder uses the title directly. Remove the incorrect assertion.

Made-with: Cursor
This commit is contained in:
2026-04-18 03:21:36 +00:00
parent 39d58f58c1
commit d9717ab941
@@ -146,7 +146,6 @@ describe('prompt assembly from workflowStore', () => {
});
const result = await exec(makeEffect());
expect(result.output).toContain('Bug Fix');
expect(result.output).toContain('Fix bug');
expect(result.output).toContain('Fix the broken test');
});