Skip to content

Commit

Permalink
apptest
Browse files Browse the repository at this point in the history
  • Loading branch information
Santiago21112001 committed Mar 10, 2024
1 parent 26c4f96 commit 67b63a6
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions webapp/src/App.test.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import { render, screen } from '@testing-library/react';
import App from './App';
import React from 'react';
import { render } from '@testing-library/react';
import App from './App.js';

test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/WIQ_ES04C/i);
expect(linkElement).toBeInTheDocument();
describe('App Component', () => {
test('renders App component', () => {
render(<App />);

});
});

0 comments on commit 67b63a6

Please sign in to comment.