Authored by 毕凯

增加测试环境配置

  1 +module.exports = {
  2 + assetsUrl: '//activity.yohobuy.com',
  3 + sessionRedis: {
  4 + host: '127.0.0.1',
  5 + port: 6379,
  6 + prefix: 'activity-session-test:',
  7 + ttl: 3600 // session 默认有效期
  8 + },
  9 + sessionName: 'yoho-activity-test',
  10 + sessionSecret: 'testsession'
  11 +};
@@ -16,4 +16,8 @@ if (process.env.NODE_ENV !== 'production') { @@ -16,4 +16,8 @@ if (process.env.NODE_ENV !== 'production') {
16 config = Object.assign(config, require('./config.dev')); 16 config = Object.assign(config, require('./config.dev'));
17 } 17 }
18 18
  19 +if (process.env.NODE_ENV !== 'test') {
  20 + config = Object.assign(config, require('./config.test'));
  21 +}
  22 +
19 module.exports = config; 23 module.exports = config;