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