@@ -320,7 +320,7 @@ describe('Workflow Service', () => {
320
320
mockHttp
321
321
. expect (
322
322
'GET' ,
323
- '/orchestrator/workflows/executions/ ' +
323
+ '/orchestrator/workflows/executions' +
324
324
'?orderField=CREATED_DATE&ascending=false&nextPage=0' +
325
325
'&workflowStatus=INQUEUE&workflowStatus=RUNNING'
326
326
)
@@ -337,15 +337,15 @@ describe('Workflow Service', () => {
337
337
mockHttp
338
338
. expect (
339
339
'GET' ,
340
- '/orchestrator/workflows/executions/ ' +
340
+ '/orchestrator/workflows/executions' +
341
341
'?orderField=CREATED_DATE&ascending=false&nextPage=0' +
342
342
'&workflowStatus=CANCELLED&workflowStatus=FAILED&workflowStatus=FINISHED'
343
343
)
344
344
. send ( mockFirstPageResults ) ;
345
345
mockHttp
346
346
. expect (
347
347
'GET' ,
348
- '/orchestrator/workflows/executions/ ' +
348
+ '/orchestrator/workflows/executions' +
349
349
'?orderField=CREATED_DATE&ascending=false&nextPage=1' +
350
350
'&workflowStatus=CANCELLED&workflowStatus=FAILED&workflowStatus=FINISHED'
351
351
)
@@ -359,15 +359,15 @@ describe('Workflow Service', () => {
359
359
mockHttp
360
360
. expect (
361
361
'GET' ,
362
- '/orchestrator/workflows/executions/ ' +
362
+ '/orchestrator/workflows/executions' +
363
363
'?orderField=CREATED_DATE&ascending=false&nextPage=0' +
364
364
'&workflowStatus=INQUEUE&workflowStatus=RUNNING'
365
365
)
366
366
. send ( mockFirstPageResults ) ;
367
367
mockHttp
368
368
. expect (
369
369
'GET' ,
370
- '/orchestrator/workflows/executions/ ' +
370
+ '/orchestrator/workflows/executions' +
371
371
'?orderField=CREATED_DATE&ascending=false&nextPage=1' +
372
372
'&workflowStatus=INQUEUE&workflowStatus=RUNNING'
373
373
)
@@ -386,15 +386,15 @@ describe('Workflow Service', () => {
386
386
mockHttp
387
387
. expect (
388
388
'GET' ,
389
- '/orchestrator/workflows/executions/ ' +
389
+ '/orchestrator/workflows/executions' +
390
390
'?orderField=CREATED_DATE&ascending=false&nextPage=0' +
391
391
'&workflowStatus=CANCELLED&workflowStatus=FAILED&workflowStatus=FINISHED'
392
392
)
393
393
. send ( mockWorkflowExecutionResults ) ;
394
394
mockHttp
395
395
. expect (
396
396
'GET' ,
397
- '/orchestrator/workflows/executions/ ' +
397
+ '/orchestrator/workflows/executions' +
398
398
'?orderField=CREATED_DATE&ascending=false&nextPage=1' +
399
399
'&workflowStatus=CANCELLED&workflowStatus=FAILED&workflowStatus=FINISHED'
400
400
)
@@ -409,15 +409,15 @@ describe('Workflow Service', () => {
409
409
mockHttp
410
410
. expect (
411
411
'GET' ,
412
- '/orchestrator/workflows/executions/ ' +
412
+ '/orchestrator/workflows/executions' +
413
413
'?orderField=CREATED_DATE&ascending=false&nextPage=0' +
414
414
'&workflowStatus=INQUEUE&workflowStatus=RUNNING'
415
415
)
416
416
. send ( mockWorkflowExecutionResults ) ;
417
417
mockHttp
418
418
. expect (
419
419
'GET' ,
420
- '/orchestrator/workflows/executions/ ' +
420
+ '/orchestrator/workflows/executions' +
421
421
'?orderField=CREATED_DATE&ascending=false&nextPage=1' +
422
422
'&workflowStatus=INQUEUE&workflowStatus=RUNNING'
423
423
)
0 commit comments