After converting to bun and running bun test.
My snapshots are massive json document fragments instead of pretty html, why is this happening and is there a way to fix this.
const { asFragment, container } = render(
<Suspense fallback={<Text text='Loading...' />}>
<LazyText text='hi' />
</Suspense>
);
expect(asFragment()).toMatchSnapshot();
this is the code im running and it outputs the contents of the file i attached