fix: Removed "/test" Route with comments

This commit is contained in:
jeremyito07
2023-12-16 10:23:48 +05:30
parent c4507dd06b
commit 61209f4c6c
-3
View File
@@ -170,9 +170,6 @@ app.get('/', function (req, res) {
res.status(200).send('open-sign-server is running !!!');
});
// There will be a test page available on the /test path of your server url
// Remove this before launching your app
if (!process.env.TESTING) {
const port = process.env.PORT || 8080;
const httpServer = http.createServer(app);