1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/test/fixtures/fake-client-applications-store.js
2020-09-25 09:39:12 +02:00

24 lines
598 B
JavaScript

'use strict';
module.exports = () => {
let apps = [];
return {
upsert: app => {
apps.push(app);
return Promise.resolve();
},
getApplications: () => Promise.resolve(apps),
getApplication: appName => {
const app = apps.filter(a => a.appName === appName)[0];
if (!app) {
throw new Error(`Could not find app=${appName}`);
}
return app;
},
deleteApplication: appName => {
apps = apps.filter(app => app.appName !== appName);
},
};
};