Merge pull request #1652 from vector-im/rav/fix_karma_olm_warning

Karma: fix warning by ignoring olm
pull/1660/head
David Baker 2016-06-16 11:16:00 +01:00 committed by GitHub
commit 42b7410a5d
1 changed files with 7 additions and 2 deletions

View File

@ -131,6 +131,11 @@ module.exports = function (config) {
path.resolve('./test'),
],
},
plugins: [
// olm may not be installed, so avoid webpack warnings by
// ignoring it.
new webpack.IgnorePlugin(/^olm$/),
],
devtool: 'inline-source-map',
},
});