1
0
Fork 0
mirror of synced 2024-07-02 13:01:09 +12:00
budibase/packages/server/build/pouchdb.js

10 lines
195 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()
2021-03-17 08:27:18 +13:00
this.plugin = jest.fn()
2021-03-16 05:26:46 +13:00
}
module.exports = CouchDB