fix(backend): テスト時は一部のサービスを停止

This commit is contained in:
syuilo 2023-05-10 15:30:36 +09:00
parent 341c42ebb9
commit 9557579b67
1 changed files with 6 additions and 4 deletions

View File

@ -18,10 +18,12 @@ export async function server() {
const serverService = app.get(ServerService);
await serverService.launch();
app.get(ChartManagementService).start();
app.get(JanitorService).start();
app.get(QueueStatsService).start();
app.get(ServerStatsService).start();
if (process.env.NODE_ENV !== 'test') {
app.get(ChartManagementService).start();
app.get(JanitorService).start();
app.get(QueueStatsService).start();
app.get(ServerStatsService).start();
}
return app;
}