budibase/packages/server/build/pouchdb.js

10 lines
195 B
JavaScript
Raw Normal View History

2021-03-15 17:26:46 +01:00
function CouchDB() {
this.post = jest.fn()
this.allDocs = jest.fn(() => ({ rows: [] }))
this.put = jest.fn()
this.remove = jest.fn()
2021-03-16 20:27:18 +01:00
this.plugin = jest.fn()
2021-03-15 17:26:46 +01:00
}
module.exports = CouchDB