coins-deposit-box
Advanced tools
Comparing version 5.0.4 to 5.1.0
10
index.js
@@ -80,3 +80,11 @@ 'use strict'; | ||
webURL: `https://${webHostname.toLowerCase()}/`, | ||
/** | ||
* dbmap file location | ||
* | ||
* File that contains database connection parameters. | ||
* | ||
* @const {string} | ||
*/ | ||
dbmap: '/coins/config/dbmap.json', | ||
}; | ||
@@ -41,3 +41,3 @@ { | ||
}, | ||
"version": "5.0.4" | ||
"version": "5.1.0" | ||
} |
@@ -6,2 +6,3 @@ 'use strict'; | ||
const url = require('url'); | ||
const path = require('path'); | ||
@@ -20,4 +21,4 @@ function isString(value) { | ||
assert(isURL(depositBox.webURL), 'Web URL'); | ||
assert(path.extname(depositBox.dbmap) === '.json', 'dbmap format'); | ||
console.log('Tests passed!'); | ||
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4864
104