18 lines
366 B
JavaScript
18 lines
366 B
JavaScript
|
export class MMKVLoader {
|
||
|
constructor() {
|
||
|
console.log('MMKVLoader constructor mock');
|
||
|
}
|
||
|
|
||
|
setProcessingMode = jest.fn().mockImplementation(() => ({
|
||
|
withEncryption: jest.fn().mockImplementation(() => ({
|
||
|
initialize: jest.fn().mockImplementation(() => {})
|
||
|
}))
|
||
|
}));
|
||
|
}
|
||
|
|
||
|
export const ProcessingModes = {
|
||
|
MULTI_PROCESS: ''
|
||
|
};
|
||
|
|
||
|
export const create = jest.fn();
|