Skip to content

Commit cfaa471

Browse files
committed
test: update checkpoint test to include suppressMessage parameter
- Fixed test expectation to match the new function signature - saveCheckpoint now expects both allowEmpty and suppressMessage parameters
1 parent 7b58980 commit cfaa471

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/checkpoints/__tests__/checkpoint.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ describe("Checkpoint functionality", () => {
111111
// saveCheckpoint should have been called
112112
expect(mockCheckpointService.saveCheckpoint).toHaveBeenCalledWith(
113113
expect.stringContaining("Task: test-task-id"),
114-
{ allowEmpty: true },
114+
{ allowEmpty: true, suppressMessage: false },
115115
)
116116

117117
// Result should contain the commit hash

0 commit comments

Comments
 (0)