trabajo-afectivo/spec/system/getting_started/admin_spec.rb
2022-01-01 14:38:12 +01:00

21 lines
678 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
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