14 lines
377 B
Gherkin
14 lines
377 B
Gherkin
Feature: Main page
|
|
Scenario: as a visitor
|
|
When I visit the main page
|
|
Then I see the main page
|
|
|
|
Scenario: as a guest account
|
|
Given I am signed in as guest
|
|
When I visit the main page
|
|
Then I see the main page
|
|
|
|
Scenario: as a usual account
|
|
Given I am signed in with email "user@example.com"
|
|
When I visit the main page
|
|
Then I see the main page
|