budibase/packages/server/__mocks__/pouchdb.js

9 lines
169 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()
}
module.exports = CouchDB