import React from 'react'; import renderer from 'react-test-renderer'; import { it } from '@jest/globals'; import App from '../src/app'; it('renders correctly', () => { const tree = renderer.create().toJSON(); expect(tree).toBeTruthy(); });