Skip to content
Snippets Groups Projects
Commit 83fb1190 authored by Bryce Johnson's avatar Bryce Johnson
Browse files

Get tests passing.

parent 00bfb645
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -61,16 +61,17 @@ feature 'Users', feature: true, js: true do
before(:each) do
visit new_user_session_path
click_link 'Register'
@username_field = find '.username'
@username_form_group = find '.username'
@username_field = find '#new_user_username'
end
 
scenario 'shows an error border if the username already exists' do
scenario 'shows an error border if the username already exists', focus: true do
fill_in username_input, with: user.username
wait_for_ajax
expect(@username_field).to have_css '.gl-field-error-outline'
expect(@username_form_group).to have_css '.gl-field-error-outline'
end
 
scenario 'doesn\'t show an error border if the username is available' do
scenario 'doesn\'t show an error border if the username is available', focus: true do
fill_in username_input, with: 'new-user'
wait_for_ajax
expect(@username_field).not_to have_css '.gl-field-error-outline'
Loading
Loading
Loading
Loading
@@ -33,7 +33,9 @@ module LoginHelpers
fill_in "user_login", with: user.email
fill_in "user_password", with: "12345678"
check 'user_remember_me' if remember
click_button "Sign in"
page.within '.login-box' do
click_button "Sign in"
end
Thread.current[:current_user] = user
end
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment