9 lines
169 B
JavaScript
9 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
|