UNPKG

bedrock-zcap-storage

Version:
19 lines (15 loc) 524 B
/*! * Copyright (c) 2019-2020 Digital Bazaar, Inc. All rights reserved. */ 'use strict'; const {config} = require('bedrock'); const path = require('path'); config.mocha.tests.push(path.join(__dirname, 'mocha')); // mongodb config config.mongodb.name = 'bedrock_zcap_storage_test'; config.mongodb.host = 'localhost'; config.mongodb.port = 27017; // drop all collections on initialization config.mongodb.dropCollections = {}; config.mongodb.dropCollections.onInit = true; config.mongodb.dropCollections.collections = [];