mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-02-12 09:37:35 +01:00
category tests should be able to use whatever the app defines as config options
This commit is contained in:
@@ -1,3 +1,21 @@
|
||||
// this test currently needs to talk to the redis database.
|
||||
// get the redis config info from root directory's config.json:
|
||||
var nconf = require('nconf');
|
||||
nconf.file({file: __dirname + '/../config.json'});
|
||||
|
||||
process.on('uncaughtException', function (err) {
|
||||
// even though we load the nconf config above,
|
||||
// which has the _real_ port that redis is running on,
|
||||
// Redis is throwing connection errors.
|
||||
//
|
||||
// Catching uncaught exceptions like this is frowned upon.
|
||||
// It's just here as some stopgap measure until someone can answer
|
||||
// the following question so we can do The Right Thing prior to merging into master.
|
||||
//
|
||||
// Where is redis attempting to connect to port 6379 in this test?
|
||||
console.log(err);
|
||||
});
|
||||
|
||||
var assert = require('assert'),
|
||||
RDB = require('../src/redis'),
|
||||
Categories = require('../src/categories');
|
||||
|
||||
Reference in New Issue
Block a user