mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			273 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			273 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'rails_helper'
 | |
| 
 | |
| describe '/widget_tests', type: :request do
 | |
|   before do
 | |
|     create(:channel_widget)
 | |
|   end
 | |
| 
 | |
|   describe 'GET /widget_tests' do
 | |
|     it 'renders the page correctly' do
 | |
|       get widget_tests_url
 | |
|       expect(response).to be_successful
 | |
|     end
 | |
|   end
 | |
| end
 | 
