CLOVIS
12/21/2020, 3:51 PMthana
12/21/2020, 3:55 PMrusshwolf
12/21/2020, 4:20 PMjs {
nodejs {
testTask {
useMocha {
timeout = "120s"
}
}
}
}
and you can override for browser by adding a directory named karma.config.d
, and placing within it a .js
file with contents like this
config.set({
"client": {
"mocha": {
"timeout": 120000
},
},
"browserDisconnectTimeout": 120000
});
russhwolf
12/21/2020, 4:21 PMandylamax
12/22/2020, 12:22 AMsimon.vergauwen
07/08/2021, 3:21 PMrusshwolf
07/08/2021, 3:26 PMsimon.vergauwen
07/08/2021, 3:53 PMkarma.config.d
directory was in the wrong folder 🤦