Skip to content

Commit

Permalink
Test arreglados nombre aplicacion
Browse files Browse the repository at this point in the history
  • Loading branch information
fer4github committed Apr 30, 2024
1 parent e48ab83 commit 88d56ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/src/components/tests/Home.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ describe('Home component', () => {
const { getByText } = render(<Router><Home isLogged={false} /></Router>);

// Verifica que el título del juego esté presente
expect(getByText('WIQ 5A')).toBeInTheDocument();
expect(getByText('QUIZZ MASTER')).toBeInTheDocument();

// Verifica que los botones "INICIA SESIÓN" y "REGÍSTRATE" estén presentes
expect(getByText('INICIA SESIÓN')).toBeInTheDocument();
Expand All @@ -26,7 +26,7 @@ describe('Home component', () => {
const { getByText } = render(<Router><Home isLogged={true} /></Router>);

// Verifica que el título del juego esté presente
expect(getByText('WIQ 5A')).toBeInTheDocument();
expect(getByText('QUIZZ MASTER')).toBeInTheDocument();

// Verifica que los botones "JUGAR" y "ESTADÍSTICAS" estén presentes
expect(getByText('JUGAR')).toBeInTheDocument();
Expand Down

0 comments on commit 88d56ce

Please sign in to comment.