Supress log when test

This commit is contained in:
syuilo 2019-01-23 14:19:03 +09:00
parent 05435feee5
commit f8f1bd7b57

View File

@ -26,7 +26,7 @@ import User from '../models/user';
const app = new Koa();
app.proxy = true;
if (process.env.NODE_ENV != 'production') {
if (process.env.NODE_ENV != 'production' && process.env.NODE_ENV != 'test') {
// Logger
app.use(logger());