ff3ececc36
The `cytube-common` module was created as part of a now-defunct experiment and since then has just remained a crufty container for a few utils. Moved the utils to the main repo and removed the dependency.
15 lines
404 B
JavaScript
15 lines
404 B
JavaScript
const loadFromToml = require('../../lib/configuration/configloader').loadFromToml;
|
|
const path = require('path');
|
|
|
|
class IntegrationTestConfig {
|
|
constructor(config) {
|
|
this.config = config;
|
|
}
|
|
|
|
get knexConfig() {
|
|
return this.config.database;
|
|
}
|
|
}
|
|
|
|
exports.testConfig = loadFromToml(IntegrationTestConfig, path.resolve(__dirname, '..', '..', 'conf', 'integration-test.toml'));
|