Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
troubleshoot CI
  • Loading branch information
joewiz committed Jun 11, 2021
commit dc77a8e467f6de758944d1fa69c178d8e9d36bc6
5 changes: 4 additions & 1 deletion src/test/mocha/xqSuite.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ describe('running XQsuite test …', function () {
client
.get(runner)
.set('Accept', 'application/json')
.expect('content-type', 'application/json; charset=utf-8')
.expect('content-type', /json/)
.expect(200)
.end(function (err, res) { // eslint-disable-line handle-callback-err
console.info('response body: ' + JSON.stringify(res.body))
if (err) return done(err);
try {
console.group()
console.group()
Expand Down