Files
fredy/test/mocks/mockNotification.js

11 lines
190 B
JavaScript
Raw Normal View History

let tmpStore = {};
2018-01-20 20:23:27 +01:00
export const send = (serviceName, payload) => {
tmpStore = { serviceName, payload };
return [Promise.resolve()];
};
2018-01-20 20:23:27 +01:00
export const get = () => {
return tmpStore;
2018-01-20 20:23:27 +01:00
};