We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9939141 commit 679e86dCopy full SHA for 679e86d
resources/test/karma.conf.js
@@ -102,5 +102,7 @@ function setWebpack(config, options) {
102
options.webpack = require('./webpack.config')(env);
103
delete options.webpack.entry;
104
delete options.webpack.output.libraryTarget;
105
+ const invalidPluginsForUnitTesting = ["GenerateBundleStarterPlugin", "GenerateNativeScriptEntryPointsPlugin"];
106
+ options.webpack.plugins = options.webpack.plugins.filter(p => !invalidPluginsForUnitTesting.includes(p.constructor.name));
107
}
108
0 commit comments