Skip to content

Commit

Permalink
Otra issue
Browse files Browse the repository at this point in the history
  • Loading branch information
uo276026 committed Apr 28, 2024
1 parent add7c77 commit 34453cf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions webapp/src/components/tests/Juego.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('Juego component', () => {
});

it('obtiene las preguntas y respuestas', async () => {
const { container, getByText } = render(<Juego isLogged={true} username="test" numPreguntas={1} />);
const { getByText } = render(<Juego isLogged={true} username="test" numPreguntas={1} />);

await waitFor(() => getByText('CARGANDO...'));

Expand All @@ -49,7 +49,7 @@ describe('Juego component', () => {
});

it('responde la pregunta correctamente', async () => {
const { container, getByText } = render(<Juego isLogged={true} username="test" numPreguntas={1} />);
const { getByText } = render(<Juego isLogged={true} username="test" numPreguntas={1} />);

await waitFor(() => getByText(mockData.question));

Expand All @@ -63,7 +63,7 @@ describe('Juego component', () => {
});

it('responde la pregunta incorrectamente y despinta al hacer click en Siguiente', async () => {
const { container, getByText } = render(<Juego isLogged={true} username="test" numPreguntas={2} />);
const { getByText } = render(<Juego isLogged={true} username="test" numPreguntas={2} />);

await waitFor(() => getByText(mockData.question));

Expand Down Expand Up @@ -92,15 +92,15 @@ describe('Juego component', () => {
});

it('finalizar Juego', async () => {
const { container, getByText } = render(<Juego isLogged={true} username="test" numPreguntas={1} />);
const { getByText } = render(<Juego isLogged={true} username="test" numPreguntas={1} />);
await waitFor(() => getByText(mockData.question));
fireEvent.click(getByText('SIGUIENTE'));
fireEvent.click(getByText('GUARDAR ESTADÍSTICAS'));
expect(getByText('Comience nueva partida o visite sus estadísticas!!')).toBeInTheDocument()
});

it('el temporizador llega a 0 y se desvelan las respuestas ademas de bloquearse los botones', async () => {
const { container, getByText } = render(<Juego isLogged={true} username="test" numPreguntas={1} />);
const { getByText } = render(<Juego isLogged={true} username="test" numPreguntas={1} />);

await waitFor(() => getByText(mockData.question));
act(() => {
Expand Down

0 comments on commit 34453cf

Please sign in to comment.