i have created a jest test file below.But the snapshot for this file is not created. What is the issue in my code?
import React from 'react';
import Carousel from './component';
import renderer from 'react-test-renderer';
test('Carousel Component Test Suite', () => {
const component = renderer.create(
<Carousel
/>
);
let tree = component.toJSON();
expect(tree).toMatchSnapshot();
});