Skip to content

Commit c8128e5

Browse files
committed
adjust setup to help run on the CI
1 parent bcb165d commit c8128e5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/jasmine/performance_tests/all_test.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,14 @@ tests.forEach(function(spec, index) {
270270
describe('Performance test ' + spec.nTraces + ' ' + spec.traceType + (spec.mode ? ' | mode: ' + spec.mode : '') + ' | size:' + spec.n, function() {
271271
'use strict';
272272

273+
beforeEach(function() {
274+
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000;
275+
});
276+
277+
afterEach(function(done) {
278+
delay(100)().then(done);
279+
});
280+
273281
samples.forEach(function(t) {
274282
it('turn: ' + t, function() {
275283
var startTime, endTime;

0 commit comments

Comments
 (0)