1
0
Fork 0
mirror of synced 2024-10-04 03:54:37 +13:00
budibase/packages/server/__mocks__/pouchdb.js
Martin McKeaveney 813ea1ede8 couchDB tests
2021-03-15 16:26:46 +00:00

8 lines
169 B
JavaScript

function CouchDB() {
this.post = jest.fn()
this.allDocs = jest.fn(() => ({ rows: [] }))
this.put = jest.fn()
this.remove = jest.fn()
}
module.exports = CouchDB