mirror of https://gitlab.com/m3f_usm/SmartStopAPK
20 lines
434 B
JavaScript
20 lines
434 B
JavaScript
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();
|
|
|
|
const remoteConfig = () => ({
|
|
fetchAndActivate,
|
|
setConfigSettings,
|
|
setDefaults,
|
|
getValue,
|
|
getAll,
|
|
getString,
|
|
getNumber,
|
|
});
|
|
|
|
export default remoteConfig;
|