UNPKG

@2bad/bitrix

Version:

Bitrix24 REST API client that doesn't suck

32 lines (31 loc) 965 B
"use strict"; describe('Bitrix API', () => { describe('`get` method', () => { it.todo('should get result'); it.todo('should reject on error'); }); describe('`batch` method', () => { it.todo('should execute the batch'); it.todo('should reject on errors'); }); describe('`deals`', () => { describe('`get` method', () => { it.todo('should get entry'); it.todo('should reject on error'); }); describe('`list` method', () => { it.todo('should all entries'); it.todo('should reject on error'); }); }); describe('`leads`', () => { describe('`get` method', () => { it.todo('should get entry'); it.todo('should reject on error'); }); describe('`list` method', () => { it.todo('should get all entries'); it.todo('should reject on error'); }); }); });