mirror of
https://github.com/chatwoot/chatwoot.git
synced 2026-06-13 21:01:16 +08:00
Co-authored-by: Sivin Varghese <[email protected]> Co-authored-by: Pranav Raj S <[email protected]>
10 lines
269 B
JavaScript
10 lines
269 B
JavaScript
import bulkActions from '../bulkActions';
|
|
import ApiClient from '../ApiClient';
|
|
|
|
describe('#BulkActionsAPI', () => {
|
|
it('creates correct instance', () => {
|
|
expect(bulkActions).toBeInstanceOf(ApiClient);
|
|
expect(bulkActions).toHaveProperty('create');
|
|
});
|
|
});
|