Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
BrandonSharratt committed Feb 4, 2020
1 parent 1f93ccd commit b0a7005
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions microservices/requestApi/routes/routes/requests.js
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,8 @@ var buildDynamic = function(projectConfig, db, notify, util, router){
return;
}

console.log("TRYING TO SUBMIT", requestId);

// Lookup project from user groups
var project = projectConfig.deriveProjectFromUser(req.user);

Expand Down
2 changes: 1 addition & 1 deletion microservices/requestApi/test/v2/requests.js
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ describe("Requests", function() {
.set("Authorization", "Bearer " + jwt)
.send({})
.end(function (err, res) {
console.log("SHOULD SUBMIT", activeRequestId);
console.log("SHOULD SUBMIT", firstId, activeRequestId);
expect(res.body.error).to.equal(undefined);
res.should.have.status(200);
res.body.should.be.a('object');
Expand Down

0 comments on commit b0a7005

Please sign in to comment.