Remix - Testing
Given this test code snippet, what will be the output when the test runs?
import { render, screen } from '@testing-library/react';
import { MemoryRouter } from 'react-router-dom';
import UserProfile from '~/components/UserProfile';
test('shows user name after loading', () => {
render( );
const nameElement = screen.getByText(/loading/i);
expect(nameElement).toBeInTheDocument();
});