We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm submitting a feature request
Current behavior: karma-webpack will fail to parse the webpack property in the configuration when a the webpack config is is async loaded.
const webpackConfig = { entry: ... } module.exports = config => { config.set({ webpack: new Promise(resolve => resolve(webpackConfig)), }); }
Expected/desired behavior: Accept async configurations.
The text was updated successfully, but these errors were encountered:
Using deasync in a pinch helps.
deasync
Sorry, something went wrong.
No branches or pull requests
I'm submitting a feature request
Current behavior:
karma-webpack will fail to parse the webpack property in the configuration when a the webpack config is is async loaded.
Expected/desired behavior:
Accept async configurations.
As Webpack 2+ has implemented this behavior Feature request: Async configuration via webpack.config.js webpack/webpack#2697, there's some modules that depends on it. I'm using electron-webpack, which only works with async configurations, and would like to use karma-webpack for my tests.
The text was updated successfully, but these errors were encountered: