Fixed mocks not responding properly

This commit is contained in:
Ajay Ramachandran
2020-04-23 12:48:02 -04:00
parent a3b01e4eae
commit 546ded3bdd
2 changed files with 3 additions and 3 deletions

View File

@@ -4,11 +4,11 @@ var app = express();
var config = require('../src/config.js');
app.post('/ReportChannelWebhook', (req, res) => {
res.status(200);
res.sendStatus(200);
});
app.post('/FirstTimeSubmissionsWebhook', (req, res) => {
res.status(200);
res.sendStatus(200);
});
module.exports = function createMockServer(callback) {