1
0
Fork 0
mirror of synced 2024-10-02 18:16:29 +13:00
budibase/packages/server/__mocks__/pouchdb.js

9 lines
169 B
JavaScript
Raw Normal View History

2021-03-16 05:26:46 +13:00
function CouchDB() {
this.post = jest.fn()
this.allDocs = jest.fn(() => ({ rows: [] }))
this.put = jest.fn()
this.remove = jest.fn()
}
module.exports = CouchDB