24 lines
749 B
JavaScript
24 lines
749 B
JavaScript
'use strict';
|
|
|
|
var debug = require('debug')('test');
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
|
|
module.exports = function(dataSourceFactory, connectorCapabilities) {
|
|
describe('KeyValue API', function loadAllTestFiles() {
|
|
var testRoot = path.resolve(__dirname, 'kvao');
|
|
var testFiles = fs.readdirSync(testRoot);
|
|
testFiles = testFiles.filter(function(it) {
|
|
return !!require.extensions[path.extname(it).toLowerCase()] &&
|
|
/\.suite\.[^.]+$/.test(it);
|
|
});
|
|
|
|
for (var ix in testFiles) {
|
|
var name = testFiles[ix];
|
|
var fullPath = path.resolve(testRoot, name);
|
|
debug('Loading test suite %s (%s)', name, fullPath);
|
|
require(fullPath)(dataSourceFactory, connectorCapabilities);
|
|
}
|
|
});
|
|
};
|