I am using Vitest and in my testing I want to console log output something. But If I log like this:
console.log({ a: { b: { c: { d: { e: 1 } } } } });
I get this output:
{ a: { b: { c: [Object] } } }
The same happens with console.dir(). Is there any way to increase the depth of object logging in Vitest? I am working around it with JSON.stringify() but it would be helpful to have it formatted like the default.