Skip to content

Commit ccd844a

Browse files
committed
fix(test): mock isTmuxHealthy in integration test for CI compatibility
1 parent a7aa2d3 commit ccd844a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

tests/integration/orchestration.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ function mockTmux(): MockTmuxResult {
137137
spyOn(tmuxMod, 'createWindow').mockResolvedValue(undefined);
138138
spyOn(tmuxMod, 'getCurrentSession').mockReturnValue('main');
139139
spyOn(tmuxMod, 'isInsideTmux').mockReturnValue(true);
140+
spyOn(tmuxMod, 'isTmuxHealthy').mockResolvedValue(true);
140141
const sendKeys = spyOn(tmuxMod, 'sendKeys').mockResolvedValue(undefined);
141142
const killSession = spyOn(tmuxMod, 'killSession').mockResolvedValue(undefined);
142143
spyOn(tmuxMod, 'killWindow').mockResolvedValue(undefined);

0 commit comments

Comments
 (0)