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.
22 lines
534 B
JavaScript
22 lines
534 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', () => {
|
|
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);
|
|
}
|
|
}
|
|
});
|
|
});
|