@@ -1362,6 +1362,37 @@ describe('Job', function () {
1362
1362
) ;
1363
1363
} ) ;
1364
1364
1365
+ describe ( 'when a repeatable job is promoted' , ( ) => {
1366
+ it ( 'add next delayed job after promoted job completion' , async ( ) => {
1367
+ const job = await queue . add (
1368
+ 'test' ,
1369
+ { foo : 'bar' } ,
1370
+ { repeat : {
1371
+ pattern : '0 0 7 * * *'
1372
+ } , } ,
1373
+ ) ;
1374
+ const isDelayed = await job . isDelayed ( ) ;
1375
+ expect ( isDelayed ) . to . be . equal ( true ) ;
1376
+ await job . promote ( ) ;
1377
+ expect ( job . delay ) . to . be . equal ( 0 ) ;
1378
+
1379
+ const worker = new Worker ( queueName , null , { connection, prefix } ) ;
1380
+
1381
+ const currentJob1 = ( await worker . getNextJob ( 'token' ) ) as Job ;
1382
+ expect ( currentJob1 ) . to . not . be . undefined ;
1383
+
1384
+ await currentJob1 . moveToCompleted ( 'succeeded' , 'token' , true ) ;
1385
+
1386
+ const delayedCount = await queue . getDelayedCount ( ) ;
1387
+ expect ( delayedCount ) . to . be . equal ( 1 ) ;
1388
+
1389
+ const isDelayedAfterPromote = await job . isDelayed ( ) ;
1390
+ expect ( isDelayedAfterPromote ) . to . be . equal ( false ) ;
1391
+ const isCompleted = await job . isCompleted ( ) ;
1392
+ expect ( isCompleted ) . to . be . equal ( true ) ;
1393
+ } ) ;
1394
+ } ) ;
1395
+
1365
1396
describe ( 'when queue is paused' , ( ) => {
1366
1397
it ( 'should promote delayed job to the right queue' , async ( ) => {
1367
1398
await queue . add ( 'normal' , { foo : 'bar' } ) ;
0 commit comments