We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent effc5ff commit da4469dCopy full SHA for da4469d
src/App.test.tsx
@@ -1,9 +1,8 @@
1
-import React from 'react';
2
import { render, screen } from '@testing-library/react';
3
import App from './App';
4
5
-test('renders learn react link', () => {
+test('renders Vitruvius Modeler title', () => {
6
render(<App />);
7
- const linkElement = screen.getByText(/learn react/i);
8
- expect(linkElement).toBeInTheDocument();
9
-});
+ const titleElement = screen.getByText(/vitruvius modeler/i);
+ expect(titleElement).toBeInTheDocument();
+});
0 commit comments