refactor(core): Finish removing UserManagementHelper (no-changelog) (#8418)

This commit is contained in:
Iván Ovejero
2024-01-23 13:58:31 +01:00
committed by GitHub
parent 2257ec63b3
commit c0bc94c78f
12 changed files with 36 additions and 36 deletions

View File

@@ -34,6 +34,7 @@ describe('ExecutionsController', () => {
mock(),
workflowSharingService,
activeExecutionService,
mock(),
).getActive(req);
expect(activeExecutionService.findManyInQueueMode).toHaveBeenCalled();
@@ -48,6 +49,7 @@ describe('ExecutionsController', () => {
mock(),
workflowSharingService,
activeExecutionService,
mock(),
).getActive(req);
expect(activeExecutionService.findManyInQueueMode).not.toHaveBeenCalled();
@@ -67,6 +69,7 @@ describe('ExecutionsController', () => {
mock(),
workflowSharingService,
activeExecutionService,
mock(),
).stop(req);
await expect(promise).rejects.toThrow(NotFoundError);
@@ -82,6 +85,7 @@ describe('ExecutionsController', () => {
mock(),
workflowSharingService,
activeExecutionService,
mock(),
).stop(req);
expect(activeExecutionService.stop).toHaveBeenCalled();