You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/test/plugins-installed.js

24 lines
616 B
JavaScript

'use strict';
const nconf = require('nconf');
const path = require('path');
const fs = require('fs');
const db = require('./mocks/databasemock');
const active = nconf.get('test_plugins') || [];
const toTest = fs.readdirSync(path.join(__dirname, '../node_modules'))
.filter(p => p.startsWith('nodebb-') && active.includes(p));
describe('Installed Plugins', () => {
toTest.forEach((plugin) => {
const pathToTests = path.join(__dirname, '../node_modules', plugin, 'test');
try {
require(pathToTests);
} catch (err) {
if (err.code !== 'MODULE_NOT_FOUND') {
console.log(err.stack);
}
}
});
});