summaryrefslogtreecommitdiff
path: root/test/queue.js
diff options
context:
space:
mode:
authorHubert Argasinski <argasinski.hubert@gmail.com>2022-01-23 20:55:02 -0500
committerHubert Argasinski <argasinski.hubert@gmail.com>2022-01-23 20:55:02 -0500
commitc9a3f16e66224643f937fe9bd49cacac46981b8b (patch)
tree95966f77c91d506c843e578978968371468748d1 /test/queue.js
parent6ae4aaafa3541f0a5179e97d8263af9bd53d97eb (diff)
downloadasync-promisify_priority_queue.tar.gz
fix: update priorityQueue functionality to match queuepromisify_priority_queue
Diffstat (limited to 'test/queue.js')
-rw-r--r--test/queue.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/queue.js b/test/queue.js
index f99e91a..615dd6b 100644
--- a/test/queue.js
+++ b/test/queue.js
@@ -170,7 +170,6 @@ describe('queue', function(){
})
q.pushAsync([3, 4]).map(p => p.then(() => calls.push('arr')))
q.drain(() => setTimeout(() => {
- console.log('drain')
expect(calls).to.eql([1, 2, 'arr', 'arr'])
done()
}))
@@ -190,7 +189,6 @@ describe('queue', function(){
})
q.unshiftAsync([3, 4]).map(p => p.then(() => calls.push('arr')))
q.drain(() => setTimeout(() => {
- console.log('drain')
expect(calls).to.eql(['arr', 'arr', 2, 1])
done()
}))