20 lines
601 B
Ruby
20 lines
601 B
Ruby
![]() |
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe 'Getting Started > Admin', type: :system, authenticated_as: false, set_up: false do
|
||
|
it 'shows password strength error' do
|
||
|
visit 'getting_started/admin'
|
||
|
|
||
|
fill_in 'firstname', with: 'Test'
|
||
|
fill_in 'lastname', with: 'Test'
|
||
|
fill_in 'email', with: 'test@example.com'
|
||
|
fill_in 'password', with: 'asdasdasdasd'
|
||
|
fill_in 'password_confirm', with: 'asdasdasdasd'
|
||
|
|
||
|
click '.btn--success'
|
||
|
|
||
|
within '.js-danger' do
|
||
|
expect(page).to have_text('Invalid password,').and(have_no_text('["'))
|
||
|
end
|
||
|
end
|
||
|
end
|