We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7aa2d3 commit ccd844aCopy full SHA for ccd844a
1 file changed
tests/integration/orchestration.test.ts
@@ -137,6 +137,7 @@ function mockTmux(): MockTmuxResult {
137
spyOn(tmuxMod, 'createWindow').mockResolvedValue(undefined);
138
spyOn(tmuxMod, 'getCurrentSession').mockReturnValue('main');
139
spyOn(tmuxMod, 'isInsideTmux').mockReturnValue(true);
140
+ spyOn(tmuxMod, 'isTmuxHealthy').mockResolvedValue(true);
141
const sendKeys = spyOn(tmuxMod, 'sendKeys').mockResolvedValue(undefined);
142
const killSession = spyOn(tmuxMod, 'killSession').mockResolvedValue(undefined);
143
spyOn(tmuxMod, 'killWindow').mockResolvedValue(undefined);
0 commit comments