import { debug } from 'vitest-preview';
// Inside your tests
describe('my test', () => {
render(<MyComponent />);
debug(); // 👈 Add this line
}