You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nx-guitar-school/apps/website/components/home-section-blog/home-section-blog.spec.tsx

11 lines
286 B

import { render } from '@testing-library/react';
import HomeSectionBlog from './home-section-blog';
describe('HomeSectionBlog', () => {
it('should render successfully', () => {
const { baseElement } = render(<HomeSectionBlog />);
expect(baseElement).toBeTruthy();
});
});