Files
fredy/test/mocks/mockNotification.js
Christian Kellner c6cffe029d Release v1.0.0 🎉
2018-01-20 20:23:27 +01:00

12 lines
175 B
JavaScript

module.exports = {
_tmpStore: {},
send: (serviceName, payload) => {
this._tmpStore = { serviceName, payload };
},
get: () => {
return this._tmpStore;
}
};