Update karma config

This commit is contained in:
Tyler Long 2017-09-03 09:09:58 +08:00
parent 73eb98c4c3
commit 2565b47637
2 changed files with 6 additions and 23 deletions

View File

@ -1,6 +1,8 @@
// Karma configuration
// Generated on Mon Nov 03 2014 07:53:38 GMT+0100 (CET)
import { webConfig } from './webpack.config.base.js'
module.exports = function (config) {
config.set({
@ -27,27 +29,8 @@ module.exports = function (config) {
},
webpack: {
externals: ['fs'],
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: [
['env', {
'targets': {
'browsers': ['last 3 versions']
}
}]
]
}
}
}
]
}
externals: webConfig.externals,
module: webConfig.module
},
// test results reporter to use

View File

@ -21,8 +21,8 @@
"release": "yarn build -- -p --config webpack.config.prod.js",
"upgrade": "yarn-upgrade-all && yarn remove d3 && yarn add d3@3.5.17",
"lint": "node_modules/.bin/standard",
"karma": "node node_modules/karma/bin/karma start karma.conf.js --single-run",
"tape": "node node_modules/tape/bin/tape test/cli_test-*.js",
"karma": "node -r babel-register node_modules/.bin/karma start karma.conf.js --single-run",
"tape": "node -r babel-register node_modules/.bin/tape test/cli_test-*.js",
"test": "yarn lint && yarn tape && yarn karma",
"live": "live-server ./test/examples",
"jison": "gulp jison_legacy",