Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import React from 'react';
import renderer from 'react-test-renderer';
import 'jest-styled-components';
import LoadingIndicator from '../index';
describe('<LoadingIndicator />', () => {
it('should match the snapshot', () => {
const renderedComponent = renderer.create(<LoadingIndicator />).toJSON();
expect(renderedComponent).toMatchSnapshot();
});
});