You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current way of running Karma is deprecated. When running the integration tests you can see it:
21 04 2021 17:32:20.977:WARN [runner]: Passing raw CLI options to `runner(config, done)` is deprecated. Use `parseConfig(configFilePath, cliOptions, {promiseConfig: true, throwErrors: true})` to prepare a processed `Config` instance and pass that as the `config` argument instead.
Let's do exactly what they specify in this warning to fix this.
Note: We might need to still send raw options for older versions of Karma. We'll have to see. We can start with the new implementation, since we have an e2e test for the oldest supported karma version.
The text was updated successfully, but these errors were encountered:
The current way of running
Karma
is deprecated. When running the integration tests you can see it:Let's do exactly what they specify in this warning to fix this.
Note: We might need to still send raw options for older versions of Karma. We'll have to see. We can start with the new implementation, since we have an e2e test for the oldest supported karma version.
The text was updated successfully, but these errors were encountered: