Skip to content

Commit aabfbef

Browse files
committed
test
1 parent a2c6eba commit aabfbef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/queues/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@ export default buildConfigWithDefaults({
9696
},
9797
},
9898
jobs: {
99-
autoRun: [
99+
/* autoRun: [
100100
{
101101
// Every second
102102
cron: '* * * * * *',
103103
limit: 100,
104104
queue: 'autorunSecond', // name of the queue
105105
},
106106
// add as many cron jobs as you want
107-
],
107+
],*/
108108
shouldAutoRun: () => true,
109109
jobsCollectionOverrides: ({ defaultJobsCollection }) => {
110110
return {

test/queues/int.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ describe('Queues', () => {
652652
expect(allSimples.docs[0].title).toBe('hello!')
653653
})
654654

655-
it('can create and autorun jobs', async () => {
655+
it.skip('can create and autorun jobs', async () => {
656656
await payload.jobs.queue({
657657
workflow: 'inlineTaskTest',
658658
queue: 'autorunSecond',

0 commit comments

Comments
 (0)