From 55a2ec83da3a3767564b54ee90201f84b6f27dac Mon Sep 17 00:00:00 2001 From: carlosjr Date: Thu, 7 Oct 2021 09:25:35 +0200 Subject: [PATCH] fix(jasmine): changed backend unit tests default timeout to 6 from 5 secs to avoid initial queries to timeout --- gulpfile.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 73b325449..efd1d15ba 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -94,8 +94,11 @@ async function launchBackTest(done) { await new Promise((resolve, reject) => { const jasmine = require('gulp-jasmine'); - let options = { + const options = { + verbose: false, + includeStackTrace: false, errorOnFail: false, + timeout: 6000, config: {} };