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

22 lines
540 B
JavaScript

'use strict';
const path = require('path');
const fs = require('fs');
const db = require('./mocks/databasemock');
const installedPlugins = fs.readdirSync(path.join(__dirname, '../node_modules'))
.filter(p => p.startsWith('nodebb-'));
describe('Installed Plugins', function () {
installedPlugins.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);
}
}
});
});