work on ceo

This commit is contained in:
Boki 2025-06-24 18:09:32 -04:00
parent c8dcd697c9
commit b25222778e
18 changed files with 391 additions and 110 deletions

View file

@ -311,7 +311,7 @@ describe('Batch Processor', () => {
priority: 5,
retries: 10,
removeOnComplete: 100,
removeOnFail: 50,
removeOnFail: 100,
});
// Check all states including job ID "1" specifically (as it often doesn't show up in state queries)
@ -337,7 +337,7 @@ describe('Batch Processor', () => {
expect(job.opts.priority).toBe(5);
expect(job.opts.attempts).toBe(10);
expect(job.opts.removeOnComplete).toBe(100);
expect(job.opts.removeOnFail).toBe(50);
expect(job.opts.removeOnFail).toBe(100);
});
});