Showing
2 changed files
with
15 additions
and
0 deletions
config/config.test.js
0 → 100644
@@ -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; |
-
Please register or login to post a comment