1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-31 00:16:47 +01:00
unleash.unleash/test/fixtures/fake-client-applications-store.js
2018-12-17 08:27:49 +01:00

15 lines
317 B
JavaScript

'use strict';
module.exports = () => {
const apps = [];
return {
upsert: app => {
apps.push(app);
return Promise.resolve();
},
getApplications: () => Promise.resolve(apps),
getApplication: appName => apps.filter(a => a.name === appName)[0],
};
};