forked from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from Arquisoft/e2e-testing
E2e testing
- Loading branch information
Showing
28 changed files
with
595 additions
and
336 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.