fix(backend): テスト時は一部のサービスを停止
This commit is contained in:
parent
341c42ebb9
commit
9557579b67
|
@ -18,10 +18,12 @@ export async function server() {
|
||||||
const serverService = app.get(ServerService);
|
const serverService = app.get(ServerService);
|
||||||
await serverService.launch();
|
await serverService.launch();
|
||||||
|
|
||||||
app.get(ChartManagementService).start();
|
if (process.env.NODE_ENV !== 'test') {
|
||||||
app.get(JanitorService).start();
|
app.get(ChartManagementService).start();
|
||||||
app.get(QueueStatsService).start();
|
app.get(JanitorService).start();
|
||||||
app.get(ServerStatsService).start();
|
app.get(QueueStatsService).start();
|
||||||
|
app.get(ServerStatsService).start();
|
||||||
|
}
|
||||||
|
|
||||||
return app;
|
return app;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue