efd1c0e975
Release / release (push) Failing after 10s
- Added rankings.feature with 3 scenarios (page loads, columns, public access) - Added home-page.feature with 4 scenarios (top players, club info, tournament, sign in) - Added step definitions for rankings page and public access testing - All 27 Cucumber scenarios passing
28 lines
850 B
Gherkin
28 lines
850 B
Gherkin
Feature: Home Page
|
|
As a visitor
|
|
I want to see the home page
|
|
So that I can learn about the club and view player rankings
|
|
|
|
@happy-path @public @home
|
|
Scenario: Home page displays Top 10 Players
|
|
Given I am on the home page
|
|
Then I should see "Top 10 Players"
|
|
And I should see a rankings table
|
|
|
|
@happy-path @public @home
|
|
Scenario: Home page displays club information
|
|
Given I am on the home page
|
|
Then I should see "Club Information"
|
|
And I should see "Club President"
|
|
|
|
@happy-path @public @home
|
|
Scenario: Home page displays most recent tournament
|
|
Given I am on the home page
|
|
Then I should see "Most Recent Tournament"
|
|
|
|
@happy-path @public @home
|
|
Scenario: Home page has sign in and create account links
|
|
Given I am on the home page
|
|
Then I should see "Sign In"
|
|
And I should see "Create Account"
|