bedrock-zcap-storage
Version:
Bedrock Authorization Capability Storage
19 lines (15 loc) • 524 B
JavaScript
/*!
* Copyright (c) 2019-2020 Digital Bazaar, Inc. All rights reserved.
*/
;
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 = [];