1import { render } from '@testing-library/react';
 2import React from 'react';
 3
 4import { App } from './app';
 5
 6test('renders codies name', () => {
 7    const { getByText } = render(<App />);
 8    const element = getByText(/codies/i);
 9    expect(element).toBeInTheDocument();
10});