Skip to content

Commit

Permalink
fix: increase timeout for BatchSpanProcessor test (jaegertracing#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurkale22 authored and danielkhan committed Oct 1, 2019
1 parent b0f3d3e commit c62b07d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ describe('BatchSpanProcessor', () => {
setTimeout(() => {
assert.strictEqual(exporter.spansDataList.length, 5);
done();
}, defaultBufferConfig.bufferTimeout + 100);
}, defaultBufferConfig.bufferTimeout + 1000);
}).timeout(defaultBufferConfig.bufferTimeout * 2);
});
});

0 comments on commit c62b07d

Please sign in to comment.