Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

E2e testing #135

Merged
merged 26 commits into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8ae83f2
Añadido test e2e de login
iyanfdezz Apr 22, 2024
0884484
Añadido test e2e de perfil
iyanfdezz Apr 22, 2024
14ea512
Corregidos errores y añadido test e2e de Sobre nosotros
iyanfdezz Apr 22, 2024
4cb9102
Añadido test e2e de logout
iyanfdezz Apr 22, 2024
7949ab4
Añadido test e2e para Config
iyanfdezz Apr 22, 2024
7d1d5d6
Añadido test e2e para History
iyanfdezz Apr 22, 2024
7b395cf
Añadido test e2e de Stats
iyanfdezz Apr 23, 2024
eb7f30d
Añadidos test e2e de ranking para cambiar modo de juego y filtrado
iyanfdezz Apr 23, 2024
4afa59f
Test e2e para UsersPage (añadir un amigo)
iyanfdezz Apr 23, 2024
e9b3f06
Añadido test e2e para crear grupo
iyanfdezz Apr 23, 2024
6b2b003
Test e2e para responder una pregunta del clasico
iyanfdezz Apr 23, 2024
a739b07
Test e2e para responder una pregunta mal en calculadora
iyanfdezz Apr 23, 2024
2e15b16
Cambiando a jordi
iyanfdezz Apr 23, 2024
4064662
Fixes
iyanfdezz Apr 23, 2024
7b32747
Fixes
iyanfdezz Apr 24, 2024
ac2e89a
Fixes y añadidos al NavBar links de config y sobre nosotros
iyanfdezz Apr 24, 2024
77e76db
Eliminando test e2e innecesarios
iyanfdezz Apr 24, 2024
72fdc96
More fixes
iyanfdezz Apr 24, 2024
3a28848
Eliminando más test innecesarios
iyanfdezz Apr 24, 2024
1650f67
Ya va el e2e de classic
iyanfdezz Apr 24, 2024
c89893c
Ya va el e2e de calculadora
iyanfdezz Apr 24, 2024
dfc1e4c
Añadido test e2e de bateria
iyanfdezz Apr 24, 2024
91c4ddc
Añadido test de creacion de grupo
iyanfdezz Apr 24, 2024
7a67ba7
Fixes
iyanfdezz Apr 24, 2024
46efcab
Ya funciona el e2e de crear grupo
iyanfdezz Apr 24, 2024
728e282
Test e2e de añadir amigo funciona
iyanfdezz Apr 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
315 changes: 6 additions & 309 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions webapp/e2e/features/add-friend.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Feature: Adding a friend

Scenario: The user can add a friend
Given A logged-in user and another user
When I add the user as a friend
Then The user should disappear from the Users page
6 changes: 6 additions & 0 deletions webapp/e2e/features/create-group.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Feature: Creating a group

Scenario: The user can create a group
Given A logged-in user
When I click on the Groups link and create a group
Then The confirmation message should be shown on screen
6 changes: 6 additions & 0 deletions webapp/e2e/features/login-form.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Feature: Login a registered user

Scenario: The user is registered in the site
Given A registered user
When I fill the data in the form and press submit
Then The home screen should be shown
6 changes: 6 additions & 0 deletions webapp/e2e/features/logout.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Feature: Logging out

Scenario: The user can logout
Given A logged-in user
When I click on the Logout link
Then The user should be logged out and the Login screen should be shown
6 changes: 6 additions & 0 deletions webapp/e2e/features/play-battery.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Feature: Answering a question

Scenario: The user can answer a question on Battery mode
Given A logged-in user
When I play on Battery mode and click on an answer
Then The next question should be loaded on screen
6 changes: 6 additions & 0 deletions webapp/e2e/features/play-calculator.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Feature: Answering a question

Scenario: The user can answer a question on Human Calculator mode
Given A logged-in user
When I play on Human Calculator mode and answer incorrectly
Then The game ends
Loading
Loading