Skip to content

Commit

Permalink
disabled invalid test case
Browse files Browse the repository at this point in the history
  • Loading branch information
manast committed Mar 6, 2017
1 parent 20af34b commit 111f148
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/test_queue.js
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,10 @@ describe('Queue', function () {
});
});

it('process stalled jobs when starting a queue', function (done) {
//
// This text is wrong, since it is not correctly simulating a stalled job.
// Probably some special method is needed to create stalled jobs.
it.skip('process stalled jobs when starting a queue', function (done) {
this.timeout(12000);
utils.newQueue('test queue stalled').then(function (queueStalled) {
queueStalled.LOCK_RENEW_TIME = 10;
Expand Down

0 comments on commit 111f148

Please sign in to comment.