Conditional Server Start in server.js for Test Environment
This commit is contained in:
parent
1631ba3478
commit
55287b9a75
11
server.js
11
server.js
|
@ -245,11 +245,12 @@ function saveCalendarData(calendarId, linkGroupName, calendars) {
|
|||
}
|
||||
|
||||
// Start the server
|
||||
const port = 3000;
|
||||
app.listen(port, () => {
|
||||
if (process.env.NODE_ENV !== 'test') {
|
||||
if (process.env.NODE_ENV !== 'test') {
|
||||
const port = 3000;
|
||||
app.listen(port, () => {
|
||||
console.log(`Server started on port ${port}`);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
export default app;
|
Loading…
Reference in New Issue