@kustomer/chat-react-native
Version:
Kustomer Chat SDK wrapper for React Native
19 lines (17 loc) • 529 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.MockKustomerChat = void 0;
var _RNKustomerChat = require("./__tests__/__mocks__/RNKustomerChat.mock");
/**
* Mock for KustomerChat for external usages.
*/
const MockKustomerChat = exports.MockKustomerChat = {
..._RNKustomerChat.MockRNKustomerChat,
close: jest.fn((animated = true) => {
console.log(`Mock close called with animated: ${animated}`);
return Promise.resolve();
})
};
//# sourceMappingURL=KustomerChat.mock.js.map