@@ -2514,19 +2514,19 @@ describe("event-queue outbox", () => {
25142514 expect ( loggerMock . callsLengths ( ) . error ) . toEqual ( 0 ) ;
25152515 } ) ;
25162516
2517- it . skip ( "how to deal with specific event configuration srv.actionName" , async ( ) => {
2518- const service = await cds . connect . to ( "Saga" ) ;
2519- await service . send ( "saga" ) ;
2520- await commitAndOpenNew ( ) ;
2521- await processEventQueue ( tx . context , "CAP_OUTBOX" , service . name ) ;
2522- const [ done , next ] = await testHelper . selectEventQueueAndReturn ( tx , {
2523- expectedLength : 2 ,
2524- additionalColumns : [ "payload" , "status" ] ,
2525- } ) ;
2526- expect ( JSON . parse ( done . payload ) ) . toMatchObject ( { } ) ;
2527- expect ( JSON . parse ( done . payload ) ) . toMatchObject ( { } ) ;
2528- expect ( loggerMock . callsLengths ( ) . error ) . toEqual ( 0 ) ;
2529- } ) ;
2517+ // it.skip("how to deal with specific event configuration srv.actionName", async () => {
2518+ // const service = await cds.connect.to("Saga");
2519+ // await service.send("saga");
2520+ // await commitAndOpenNew();
2521+ // await processEventQueue(tx.context, "CAP_OUTBOX", service.name);
2522+ // const [done, next] = await testHelper.selectEventQueueAndReturn(tx, {
2523+ // expectedLength: 2,
2524+ // additionalColumns: ["payload", "status"],
2525+ // });
2526+ // expect(JSON.parse(done.payload)).toMatchObject({});
2527+ // expect(JSON.parse(done.payload)).toMatchObject({});
2528+ // expect(loggerMock.callsLengths().error).toEqual(0);
2529+ // });
25302530 } ) ;
25312531
25322532 describe ( "provide next data" , ( ) => {
0 commit comments