In my Angular app, I use Karma and Jasmine to run my unit tests.
I'd like to change the default timeout interval for async tests, from the 5 seconds default to, let's say, 10 seconds.
I see that you can use jasmine.DEFAULT_TIMEOUT_INTERVAL = 10000
to accomplish it.
However, I'd like to change it globally, via some configuration file. For example in karma.conf.js
but I don't see the defaultTimeoutInterval
option available.