Jest is shortening error logs in the following way:
GraphQLError {
message: 'Cannot set property \'marketCap\' of undefined',
locations: [ { line: 3, column: 11 } ],
path: [ 'listings' ],
extensions:
{ code: 'INTERNAL_SERVER_ERROR',
exception: { stacktrace: [Array] }
}
} 0 [
GraphQLError {
message: 'Cannot set property \'marketCap\' of undefined',
locations: [ [Object] ],
path: [ 'listings' ],
extensions: { code: 'INTERNAL_SERVER_ERROR', exception: [Object] }
}
]
How can I force it to print the entire error instead of using [Array]
and [Object]
?
Jest is shortening error logs in the following way:
GraphQLError {
message: 'Cannot set property \'marketCap\' of undefined',
locations: [ { line: 3, column: 11 } ],
path: [ 'listings' ],
extensions:
{ code: 'INTERNAL_SERVER_ERROR',
exception: { stacktrace: [Array] }
}
} 0 [
GraphQLError {
message: 'Cannot set property \'marketCap\' of undefined',
locations: [ [Object] ],
path: [ 'listings' ],
extensions: { code: 'INTERNAL_SERVER_ERROR', exception: [Object] }
}
]
How can I force it to print the entire error instead of using [Array]
and [Object]
?
2 Answers
Reset to default 6I would assume it is not a jest but a normal nodeJS logging issue. Can be solved by using:
const util = require('util')
console.log(util.inspect(myObject, {showHidden: false, depth: null}))
Thank to @andreas answer I was able to add this to my jest.setup.js file:
var util = require('util');
util.inspect.defaultOptions.depth = null; //enable full object reproting in console.log