Files
docuseal/spec/system/personalization_settings_spec.rb
Pete Matsyburka a7ed0b86a4 dot rspec
2025-05-21 10:20:43 +03:00

18 lines
450 B
Ruby

# frozen_string_literal: true
RSpec.describe 'Personalization Settings', :js do
let!(:account) { create(:account) }
let!(:user) { create(:user, account:) }
before do
sign_in(user)
visit settings_personalization_path
end
it 'shows the notifications settings page' do
expect(page).to have_content('Email Templates')
expect(page).to have_content('Company Logo')
expect(page).to have_content('Submission Form')
end
end