Treat the search endpoint as a fetch when running tests as lucene doesn't exist
This commit is contained in:
parent
908d4b75d8
commit
a50d46ba32
|
@ -351,6 +351,11 @@ exports.bulkDestroy = async ctx => {
|
|||
}
|
||||
|
||||
exports.search = async ctx => {
|
||||
// Fetch the whole table when running tests, as search doesn't work
|
||||
if (env.isTest()) {
|
||||
return { rows: await exports.fetch(ctx) }
|
||||
}
|
||||
|
||||
const appId = ctx.appId
|
||||
const { tableId } = ctx.params
|
||||
const db = new CouchDB(appId)
|
||||
|
|
Loading…
Reference in New Issue