summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/features/landing_page_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/landing_page_spec.rb b/spec/features/landing_page_spec.rb
index 3a950b7..0321186 100644
--- a/spec/features/landing_page_spec.rb
+++ b/spec/features/landing_page_spec.rb
@@ -13,9 +13,9 @@ describe "landing page" do
expect(page).to have_content("Thanks for signing up with Parley. We’ll keep you informed with any important updates and, of course, the official launch date.")
end
- xit "should not let you sign up without an email address" do
+ it "should not let you sign up without an email address" do
visit('/')
- click_button('Sign up now')
+ first(:css, 'input[type="submit"]').click
expect(page).to have_content("Just the HR performance management features you want.")
end
end