We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecc0c6f commit dd07676Copy full SHA for dd07676
src/App.test.js
@@ -0,0 +1,8 @@
1
+import { render, screen } from '@testing-library/react';
2
+import App from './App';
3
+
4
+test('renders title on Home page', () => {
5
+ render(<App />);
6
+ const titleElement = screen.getByText('Open Source Internships');
7
+ expect(titleElement).toBeInTheDocument();
8
+});
0 commit comments