Skip to content

Commit

Permalink
fix save saga tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Büßemeyer authored and Michael Büßemeyer committed Oct 24, 2024
1 parent 3410ad7 commit 034fe9e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/javascripts/test/sagas/save_saga.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ test("SaveSaga should send request to server", (t) => {
method: "POST",
data: saveQueueWithVersions,
compress: false,
showErrorToast: false,
}),
);
});
Expand All @@ -147,6 +148,7 @@ test("SaveSaga should retry update actions", (t) => {
method: "POST",
data: saveQueueWithVersions,
compress: false,
showErrorToast: false,
},
);
const saga = sendRequestToServer(TRACING_TYPE, tracingId);
Expand Down Expand Up @@ -187,6 +189,7 @@ test("SaveSaga should escalate on permanent client error update actions", (t) =>
method: "POST",
data: saveQueueWithVersions,
compress: false,
showErrorToast: false,
}),
);
saga.throw({
Expand Down

0 comments on commit 034fe9e

Please sign in to comment.