最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to make Jest log the entire error object? - Stack Overflow

programmeradmin0浏览0评论

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]?

Share edited Feb 16, 2019 at 18:15 cegfault 6,6423 gold badges29 silver badges51 bronze badges asked Feb 16, 2019 at 17:39 Marcos PereiraMarcos Pereira 1,17115 silver badges26 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 6

I 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
发布评论

评论列表(0)

  1. 暂无评论