Browse Source

disable dll and hard-source in test

pull/2016/merge
sorrycc 8 years ago
committed by 陈帅
parent
commit
c6139e0332
  1. 2
      config/config.js
  2. 1
      tests/run-tests.js

2
config/config.js

@ -22,7 +22,7 @@ export default {
},
polyfills: ['ie9'],
...(
require('os').platform() === 'darwin'
(!process.env.TEST && require('os').platform() === 'darwin')
? {
dll: ['dva', 'dva/router', 'dva/saga', 'dva/fetch'],
hardSource: true,

1
tests/run-tests.js

@ -3,6 +3,7 @@ const { kill } = require('cross-port-killer');
const env = Object.create(process.env);
env.BROWSER = 'none';
env.TEST = true;
const startServer = spawn(/^win/.test(process.platform) ? 'npm.cmd' : 'npm', ['start'], {
env,
});

Loading…
Cancel
Save