1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/test/unit/routes/fixtures/fake-metrics-store.js

8 lines
150 B
JavaScript
Raw Normal View History

2016-11-05 17:02:46 +01:00
'use strict';
2016-11-13 15:41:35 +01:00
module.exports = () => ({
2016-11-05 17:02:46 +01:00
getMetricsLastHour: () => Promise.resolve([]),
2016-11-11 15:46:59 +01:00
insert: () => Promise.resolve(),
on: () => {}
2016-11-13 15:41:35 +01:00
});