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-instance-store.js

8 lines
181 B
JavaScript
Raw Normal View History

2016-11-10 22:05:50 +01:00
'use strict';
2016-11-13 15:41:35 +01:00
module.exports = () => ({
2016-11-10 22:05:50 +01:00
insert: () => Promise.resolve(),
2016-12-01 17:15:55 +01:00
getApplications: () => Promise.resolve([]),
2020-09-25 09:39:12 +02:00
deleteForApplication: () => Promise.resolve(),
2016-11-13 15:41:35 +01:00
});