Skip to content

Commit

Permalink
show error for failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasnteireho committed Aug 2, 2024
1 parent 3212de0 commit 7bf8594
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/routes/assemble.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ describe('POST /api/assemble', function () {
})
.expect(200)
.end(function (err) {
if (err) return done(err)
if (err) {
console.log(err)
return done(err)
}
done()
})
})
Expand Down

0 comments on commit 7bf8594

Please sign in to comment.