fix: listening on port undefined (#19)

If PORT is not defined in .env, console.log("Listening on port "
+ process.env.PORT) will display "Listening on port undefined".
This commit is contained in:
Willyanto 2021-06-27 16:01:37 +00:00 committed by GitHub
parent 7fab5e7fd0
commit 0a3fc7c3cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,9 +38,11 @@ app.use(function(req, res, next) {
.send('Not Found');
});
const port = process.env.PORT || 3000;
//Start our server and tests!
app.listen(process.env.PORT || 3000, function () {
console.log("Listening on port " + process.env.PORT);
app.listen(port, function () {
console.log("Listening on port " + port);
if(process.env.NODE_ENV==='test') {
console.log('Running Tests...');
setTimeout(function () {