@kustomer/chat-react-native
Version:
Kustomer Chat SDK wrapper for React Native
15 lines (13 loc) • 397 B
JavaScript
;
/**
* Mock for KustomerChat for external usages.
*/
import { MockRNKustomerChat } from './__tests__/__mocks__/RNKustomerChat.mock';
export const MockKustomerChat = {
...MockRNKustomerChat,
close: jest.fn((animated = true) => {
console.log(`Mock close called with animated: ${animated}`);
return Promise.resolve();
})
};
//# sourceMappingURL=KustomerChat.mock.js.map