Skip to content

Commit da4469d

Browse files
committed
some refactoring
1 parent effc5ff commit da4469d

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/App.test.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
import React from 'react';
21
import { render, screen } from '@testing-library/react';
32
import App from './App';
43

5-
test('renders learn react link', () => {
4+
test('renders Vitruvius Modeler title', () => {
65
render(<App />);
7-
const linkElement = screen.getByText(/learn react/i);
8-
expect(linkElement).toBeInTheDocument();
9-
});
6+
const titleElement = screen.getByText(/vitruvius modeler/i);
7+
expect(titleElement).toBeInTheDocument();
8+
});

0 commit comments

Comments
 (0)