-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
Feature: Login | ||
Perform login on email and password are inputted | ||
|
||
@login-feature | ||
Scenario Outline: Input email and password in wrong format | ||
Given I am on splash screen | ||
Given I am on login screen | ||
When I input email <email> | ||
And I input password "<password>" | ||
And I press submit button | ||
Then I should see error on the <view> | ||
|
||
Examples: | ||
| email | password | view | | ||
| test | lemoncake | email | | ||
| test@test.com || password | | ||
|
||
@login-feature | ||
Scenario Outline: Input email and password in correct format | ||
Given I am on splash screen | ||
Given I am on login screen | ||
When I input email <email> | ||
And I input password "<password>" | ||
And I press submit button | ||
Then I should <see> auth error | ||
|
||
Examples: | ||
| email | password | see | | ||
| espresso@spoon.com | bananacake | true | | ||
| espresso@spoon.com | lemoncake | false | | ||
| latte@spoon.com | lemoncake | true | | ||
|
||
@login-feature | ||
Scenario: Tap login button and show login screen | ||
Given I am on splash screen | ||
Given I am on login screen | ||
When I tap sign up button | ||
Then I should see sign up screen |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Feature: Signup | ||
Perform sign up | ||
|
||
@signup-feature | ||
Scenario: Tap login button and show login screen | ||
Given I am on sign up screen | ||
When I tap login button | ||
Then I should see login screen |
This file was deleted.