We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcb165d commit c8128e5Copy full SHA for c8128e5
test/jasmine/performance_tests/all_test.js
@@ -270,6 +270,14 @@ tests.forEach(function(spec, index) {
270
describe('Performance test ' + spec.nTraces + ' ' + spec.traceType + (spec.mode ? ' | mode: ' + spec.mode : '') + ' | size:' + spec.n, function() {
271
'use strict';
272
273
+ beforeEach(function() {
274
+ jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000;
275
+ });
276
+
277
+ afterEach(function(done) {
278
+ delay(100)().then(done);
279
280
281
samples.forEach(function(t) {
282
it('turn: ' + t, function() {
283
var startTime, endTime;
0 commit comments