Files
fredy/test/mocks/mockNotification.js

13 lines
208 B
JavaScript
Raw Permalink Normal View History

2018-01-20 20:23:27 +01:00
module.exports = {
_tmpStore: {},
send: (serviceName, payload) => {
this._tmpStore = { serviceName, payload };
return [Promise.resolve()];
2018-01-20 20:23:27 +01:00
},
get: () => {
return this._tmpStore;
},
2018-01-20 20:23:27 +01:00
};