diff --git a/.all-contributorsrc b/.all-contributorsrc
index aebf49231..c6fe8646b 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -196,6 +196,15 @@
"contributions": [
"code"
]
+ },
+ {
+ "login": "VikramNagwal",
+ "name": "Vikram",
+ "avatar_url": "https://avatars.githubusercontent.com/u/123088024?v=4",
+ "profile": "https://github.com/VikramNagwal",
+ "contributions": [
+ "code"
+ ]
}
]
}
diff --git a/README.md b/README.md
index 510848dd2..9c5d5b378 100644
--- a/README.md
+++ b/README.md
@@ -131,6 +131,9 @@ We would like to thank all our contributors and users for their support and feed
 Govinda Kocharekar 💻 |
 Bilal Ahmad Bhat 💻 |
+
+  Vikram 💻 |
+
diff --git a/apps/OpenSignServer/index.js b/apps/OpenSignServer/index.js
index 819940954..f3367bebc 100644
--- a/apps/OpenSignServer/index.js
+++ b/apps/OpenSignServer/index.js
@@ -170,12 +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
-app.get('/test', function (req, res) {
- res.sendFile(path.join(__dirname, '/public/test.html'));
-});
-
if (!process.env.TESTING) {
const port = process.env.PORT || 8080;
const httpServer = http.createServer(app);