2022-08-08 21:02:08 +00:00
|
|
|
export class MMKVLoader {
|
|
|
|
constructor() {
|
|
|
|
console.log('MMKVLoader constructor mock');
|
|
|
|
}
|
|
|
|
|
|
|
|
setProcessingMode = jest.fn().mockImplementation(() => ({
|
2023-08-17 19:41:20 +00:00
|
|
|
setAccessibleIOS: jest.fn().mockImplementation(() => ({
|
|
|
|
withEncryption: jest.fn().mockImplementation(() => ({
|
|
|
|
initialize: jest.fn().mockImplementation(() => {})
|
|
|
|
}))
|
2022-08-08 21:02:08 +00:00
|
|
|
}))
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
export const ProcessingModes = {
|
|
|
|
MULTI_PROCESS: ''
|
|
|
|
};
|
|
|
|
|
2023-08-17 19:41:20 +00:00
|
|
|
export const IOSAccessibleStates = {
|
|
|
|
AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY: ''
|
|
|
|
};
|
|
|
|
|
2022-08-08 21:02:08 +00:00
|
|
|
export const create = jest.fn();
|