Timothy J Warren
7fbbff41c8
Start work of using promises to wrap connections and removing old callback api.
16 lines
360 B
JavaScript
16 lines
360 B
JavaScript
'use strict';
|
|
|
|
const chai = require('chai');
|
|
const chaiAsPromised = require('chai-as-promised');
|
|
chai.use(chaiAsPromised);
|
|
|
|
// Load the test config file
|
|
const configFile = './config.json';
|
|
|
|
module.exports = {
|
|
config: require(configFile),
|
|
expect: chai.expect,
|
|
tests: require('./base/tests'),
|
|
promiseTestRunner: require('./base/adapterPromiseTestRunner')
|
|
};
|