influxdb/ui/mocks/kapacitor/apis/index.ts

9 lines
197 B
TypeScript
Raw Normal View History

export const pingKapacitorVersion = jest.fn(() => Promise.resolve('2.0'))
2018-04-10 20:56:53 +00:00
export const getLogStreamByRuleID = jest.fn(() =>
Promise.resolve({
body: {
getReader: () => {},
},
})
)