Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct how config parameters for karma are set (#369)
Last time we had an error during test execution on macOS we saw that the **captureTimeout** parameter was not applied. This happened because the content of `karma.config.d/karma.conf.js` file was merged into the following block: ```js module.exports = function(config) { // kotlin configuration // ... // content from our file } ``` As a result, it looked like this: ```js module.exports = function(config) { // kotlin configuration // ... // content from our file module.exports = function(config) { } } ``` That was the reason, why our configuration changes were not applied. Let's see what happens with #307 issue after we correct the `karma.conf.js`
- Loading branch information