@zargu/couchdb-designer
Version:
Create and testing couchdb design document form directory structure.
10 lines (7 loc) • 304 B
JavaScript
import { getTestContext} from '../../build/testing/testEnvironment';
import createMangoFind from './mango/createMangoFind';
const createMangoFunctions = contextId => {
let {server} = getTestContext(contextId);
server['find'] = createMangoFind(contextId);
}
export default createMangoFunctions;