fix(runtime-core/scheduler): prevent duplicate queue (#1767)
This commit is contained in:
parent
86cdf6694d
commit
b2a91429ed
@ -353,4 +353,16 @@ describe('scheduler', () => {
|
|||||||
await nextTick()
|
await nextTick()
|
||||||
expect(count).toBe(5)
|
expect(count).toBe(5)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
test('should prevent duplicate queue', async () => {
|
||||||
|
let count = 0
|
||||||
|
const job = () => {
|
||||||
|
count++
|
||||||
|
}
|
||||||
|
job.cb = true
|
||||||
|
queueJob(job)
|
||||||
|
queueJob(job)
|
||||||
|
await nextTick()
|
||||||
|
expect(count).toBe(1)
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
@ -45,7 +45,7 @@ export function queueJob(job: SchedulerJob) {
|
|||||||
// ensure it doesn't end up in an infinite loop.
|
// ensure it doesn't end up in an infinite loop.
|
||||||
if (
|
if (
|
||||||
!queue.length ||
|
!queue.length ||
|
||||||
!queue.includes(job, job.cb ? flushIndex + 1 : flushIndex)
|
!queue.includes(job, isFlushing && job.cb ? flushIndex + 1 : flushIndex)
|
||||||
) {
|
) {
|
||||||
queue.push(job)
|
queue.push(job)
|
||||||
if ((job.id as number) < 0) hasPendingPreFlushJobs = true
|
if ((job.id as number) < 0) hasPendingPreFlushJobs = true
|
||||||
|
Loading…
x
Reference in New Issue
Block a user