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