File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -96,15 +96,15 @@ export default buildConfigWithDefaults({
96
96
} ,
97
97
} ,
98
98
jobs : {
99
- autoRun : [
99
+ /* autoRun: [
100
100
{
101
101
// Every second
102
102
cron: '* * * * * *',
103
103
limit: 100,
104
104
queue: 'autorunSecond', // name of the queue
105
105
},
106
106
// add as many cron jobs as you want
107
- ] ,
107
+ ],*/
108
108
shouldAutoRun : ( ) => true ,
109
109
jobsCollectionOverrides : ( { defaultJobsCollection } ) => {
110
110
return {
Original file line number Diff line number Diff line change @@ -652,7 +652,7 @@ describe('Queues', () => {
652
652
expect ( allSimples . docs [ 0 ] . title ) . toBe ( 'hello!' )
653
653
} )
654
654
655
- it ( 'can create and autorun jobs' , async ( ) => {
655
+ it . skip ( 'can create and autorun jobs' , async ( ) => {
656
656
await payload . jobs . queue ( {
657
657
workflow : 'inlineTaskTest' ,
658
658
queue : 'autorunSecond' ,
You can’t perform that action at this time.
0 commit comments