1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/test/unit/routes/fixtures/fake-client-strategy-store.js

7 lines
120 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
getAll: () => Promise.resolve([])
2016-11-13 15:41:35 +01:00
});