mirror of
https://github.com/docusealco/docuseal.git
synced 2026-06-23 04:10:11 +00:00
20 lines
559 B
Ruby
20 lines
559 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe 'Personalization' do
|
|
let!(:account) { create(:account) }
|
|
let!(:user) { create(:user, account:) }
|
|
|
|
before do
|
|
sign_in(user)
|
|
visit settings_personalization_path
|
|
end
|
|
|
|
it 'shows the personalization page' do
|
|
expect(page).to have_content('Email Templates')
|
|
expect(page).to have_content('Signature Request Email')
|
|
expect(page).to have_content('Completed Notification Email')
|
|
expect(page).to have_content('Documents Copy Email')
|
|
expect(page).to have_content('Company Logo')
|
|
end
|
|
end
|