We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5535fd commit cc3d941Copy full SHA for cc3d941
apps/twig/src/renderer/features/sessions/service/service.test.ts
@@ -742,8 +742,9 @@ describe("SessionService", () => {
742
expect(mockTrpcAgent.cancel.mutate).toHaveBeenCalledWith({
743
sessionId: "run-123",
744
});
745
- expect(mockSessionStoreSetters.removeSession).toHaveBeenCalledWith(
+ expect(mockSessionStoreSetters.updateSession).toHaveBeenCalledWith(
746
"run-123",
747
+ { status: "disconnected", errorMessage: undefined },
748
);
749
750
0 commit comments