mirror of https://github.com/docusealco/docuseal
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							450 B
						
					
					
				
			
		
		
	
	
							18 lines
						
					
					
						
							450 B
						
					
					
				| # 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
 |