mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 13:07:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import inboxesAPI from '../inboxes';
 | 
						|
import ApiClient from '../ApiClient';
 | 
						|
 | 
						|
describe('#InboxesAPI', () => {
 | 
						|
  it('creates correct instance', () => {
 | 
						|
    expect(inboxesAPI).toBeInstanceOf(ApiClient);
 | 
						|
    expect(inboxesAPI).toHaveProperty('get');
 | 
						|
    expect(inboxesAPI).toHaveProperty('show');
 | 
						|
    expect(inboxesAPI).toHaveProperty('create');
 | 
						|
    expect(inboxesAPI).toHaveProperty('update');
 | 
						|
    expect(inboxesAPI).toHaveProperty('delete');
 | 
						|
    expect(inboxesAPI).toHaveProperty('getCampaigns');
 | 
						|
    expect(inboxesAPI).toHaveProperty('getAgentBot');
 | 
						|
    expect(inboxesAPI).toHaveProperty('setAgentBot');
 | 
						|
  });
 | 
						|
 | 
						|
  describe('API calls', () => {
 | 
						|
    const originalAxios = window.axios;
 | 
						|
    const axiosMock = {
 | 
						|
      post: jest.fn(() => Promise.resolve()),
 | 
						|
      get: jest.fn(() => Promise.resolve()),
 | 
						|
      patch: jest.fn(() => Promise.resolve()),
 | 
						|
      delete: jest.fn(() => Promise.resolve()),
 | 
						|
    };
 | 
						|
 | 
						|
    beforeEach(() => {
 | 
						|
      window.axios = axiosMock;
 | 
						|
    });
 | 
						|
 | 
						|
    afterEach(() => {
 | 
						|
      window.axios = originalAxios;
 | 
						|
    });
 | 
						|
 | 
						|
    it('#getCampaigns', () => {
 | 
						|
      inboxesAPI.getCampaigns(2);
 | 
						|
      expect(axiosMock.get).toHaveBeenCalledWith('/api/v1/inboxes/2/campaigns');
 | 
						|
    });
 | 
						|
 | 
						|
    it('#deleteInboxAvatar', () => {
 | 
						|
      inboxesAPI.deleteInboxAvatar(2);
 | 
						|
      expect(axiosMock.delete).toHaveBeenCalledWith('/api/v1/inboxes/2/avatar');
 | 
						|
    });
 | 
						|
  });
 | 
						|
});
 |