14 lines
536 B
Gherkin
14 lines
536 B
Gherkin
# because the create_session test creates a second session, I think it cause test to fail
|
|
# the reason I think this is because if you run just this test, it's fine. so something about creating multiple sessions
|
|
# in capybara seems to upset cucumber/capybara for a 2nd test
|
|
@wip
|
|
Feature: Viewer can use the home page
|
|
In order to use the rest of the service
|
|
As a viewer
|
|
I want to see the home page of the service
|
|
|
|
@javascript
|
|
Scenario: View home page
|
|
Given I am on the home page
|
|
Then I should see "sign in or register"
|