We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a76bdce commit dc77a8eCopy full SHA for dc77a8e
src/test/mocha/xqSuite.js
@@ -12,8 +12,11 @@ describe('running XQsuite test …', function () {
12
client
13
.get(runner)
14
.set('Accept', 'application/json')
15
- .expect('content-type', 'application/json; charset=utf-8')
+ .expect('content-type', /json/)
16
+ .expect(200)
17
.end(function (err, res) { // eslint-disable-line handle-callback-err
18
+ console.info('response body: ' + JSON.stringify(res.body))
19
+ if (err) return done(err);
20
try {
21
console.group()
22
0 commit comments