2024-01-11 09:13:20 -03:00
|
|
|
export const fetchAndActivate = jest.fn();
|
|
|
|
export const setConfigSettings = jest.fn();
|
|
|
|
export const setDefaults = jest.fn();
|
|
|
|
export const getValue = jest.fn();
|
|
|
|
export const getAll = jest.fn();
|
|
|
|
export const getString = jest.fn();
|
|
|
|
export const getNumber = jest.fn();
|
|
|
|
|
2023-12-22 22:40:24 -03:00
|
|
|
const remoteConfig = () => ({
|
2024-01-11 09:13:20 -03:00
|
|
|
fetchAndActivate,
|
|
|
|
setConfigSettings,
|
|
|
|
setDefaults,
|
|
|
|
getValue,
|
|
|
|
getAll,
|
|
|
|
getString,
|
|
|
|
getNumber,
|
2023-12-22 22:40:24 -03:00
|
|
|
});
|
|
|
|
|
|
|
|
export default remoteConfig;
|