mirror of
https://github.com/Safe-Support-Chat/ocrcc-chatbox
synced 2024-11-01 00:55:26 +00:00
11 lines
258 B
JavaScript
11 lines
258 B
JavaScript
|
export const mockCreateClient = jest.fn();
|
||
|
export const mockStartClient = jest.fn();
|
||
|
|
||
|
const mockMatrix = jest.fn().mockImplementation(() => {
|
||
|
return {
|
||
|
createClient: mockCreateClient,
|
||
|
startClient: mockStartClient
|
||
|
};
|
||
|
});
|
||
|
|
||
|
export default mockMatrix;
|