No previews found.
Please add following lines to your test:

import { debug } from 'vitest-preview';

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

Then rerun your tests.