You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Gherkin syntax supports adding test data like below:
Given the user is on the sign in screen
When the user attempts to sign in with invalid credentials
Then the user is not signed in
Examples:
| email | password |
| existentuser@domain.com | invalidPassword |
| nonexistentuser@domain.com | somePassword |
We currently ignore the test data and embed credentials in the tests. Ideally, we should parse the examples table and pass the data into the test execution. This would also require running the same test with different data.
The text was updated successfully, but these errors were encountered:
Gherkin syntax supports adding test data like below:
We currently ignore the test data and embed credentials in the tests. Ideally, we should parse the examples table and pass the data into the test execution. This would also require running the same test with different data.
The text was updated successfully, but these errors were encountered: