fix(jasmine): changed backend unit tests default timeout to 6 from 5 secs to avoid initial queries to timeout
This commit is contained in:
parent
0b46e9ce35
commit
55a2ec83da
|
@ -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: {}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue