mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 19:17:48 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			562 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			562 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import userNotificationSettings from '../userNotificationSettings';
 | |
| import ApiClient from '../ApiClient';
 | |
| 
 | |
| describe('#AgentAPI', () => {
 | |
|   it('creates correct instance', () => {
 | |
|     expect(userNotificationSettings).toBeInstanceOf(ApiClient);
 | |
|     expect(userNotificationSettings).toHaveProperty('get');
 | |
|     expect(userNotificationSettings).toHaveProperty('show');
 | |
|     expect(userNotificationSettings).toHaveProperty('create');
 | |
|     expect(userNotificationSettings).toHaveProperty('update');
 | |
|     expect(userNotificationSettings).toHaveProperty('delete');
 | |
|   });
 | |
| });
 | 
