Added unit tests for "parser.js" and "util.js"

This commit is contained in:
euvl
2017-08-07 16:07:57 +01:00
parent 72f5222e4b
commit 0089717a8c
10 changed files with 186 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
// This is the webpack config used for unit tests.
var webpack = require('webpack')
var merge = require('webpack-merge')
var baseConfig = require('./webpack.base.config')
var webpackConfig = merge(baseConfig, {
devtool: '#inline-source-map'
})
delete webpackConfig.entry
delete webpackConfig.output
module.exports = webpackConfig