mirror of https://gitlab.com/m3f_usm/SmartStopAPK
12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
![]() |
const remoteConfig = () => ({
|
||
|
fetchAndActivate: jest.fn(() => Promise.resolve(true)),
|
||
|
setConfigSettings: jest.fn(),
|
||
|
setDefaults: jest.fn(),
|
||
|
getValue: jest.fn(),
|
||
|
getAll: jest.fn(),
|
||
|
getString: jest.fn(),
|
||
|
getNumber: jest.fn(),
|
||
|
});
|
||
|
|
||
|
export default remoteConfig;
|