Files
fredy/test/mocks/mockNotification.js

16 lines
321 B
JavaScript
Raw Normal View History

2025-12-11 10:40:55 +01:00
/*
* Copyright (c) 2026 by Christian Kellner.
2025-12-11 10:40:55 +01:00
* Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause
*/
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
};