We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99133b0 commit f016bd7Copy full SHA for f016bd7
test/test-memory.js
@@ -93,10 +93,7 @@ describe('memory usage', function() {
93
94
it('100 GET requests 50k', function(done) {
95
// This test is just for comparison with the following tests.
96
- // On Node 0.10.x, the initial memory usage seems higher on Travis, so use
97
- // a higher maximum value to avoid flaky tests.
98
- var memMax = /^v0\./.test(process.version) ? 1200 : 550;
99
- performNRequests(100, 50, memMax, done);
+ performNRequests(100, 50, 1200, done);
100
});
101
102
// 100x 1k and 100x 50k for comparison.
0 commit comments