Sylius/features/frontend/user_login_via_oauth.feature
2015-05-21 10:57:22 +02:00

21 lines
595 B
Gherkin

@oauth
Feature: Sign in to the store via OAuth
In order to view my orders list
As a visitor with an OAuth account
I need to be able to log in to the store
Background:
Given there is default currency configured
And there is default channel configured
And I am not logged in
And I am on the store homepage
Scenario Outline: Get to the OAuth login page
When I follow "Login"
Then I should see the connect with "<oauth>" button
Examples:
| oauth |
| Amazon |
| Facebook |
| Google |