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

15 lines
317 B
JavaScript
Raw Normal View History

2016-12-06 09:27:32 +01:00
'use strict';
2018-11-29 21:45:26 +01:00
module.exports = () => {
const apps = [];
2018-01-17 15:31:53 +01:00
2018-11-29 21:45:26 +01:00
return {
upsert: app => {
apps.push(app);
return Promise.resolve();
},
getApplications: () => Promise.resolve(apps),
getApplication: appName => apps.filter(a => a.name === appName)[0],
};
};