trabajo-afectivo/spec/system/getting_started/admin_spec.rb

22 lines
677 B
Ruby

# Copyright (C) 2012-2021 Zammad Foundation, http://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