mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
29 lines
1,009 B
JavaScript
29 lines
1,009 B
JavaScript
import fs from 'fs';
|
|
import path from 'path';
|
|
|
|
export default function checkPlugins(grunt) {
|
|
grunt.registerTask('checkPlugins', 'Checks for plugins which may disrupt tests', function checkPlugins() {
|
|
const done = this.async();
|
|
const pluginsDir = path.resolve('./plugins/');
|
|
|
|
fs.readdir(pluginsDir, (err, files) => {
|
|
if (!files) {
|
|
return done();
|
|
}
|
|
|
|
const plugins = files.filter(file => {
|
|
return fs.statSync(path.join(pluginsDir, file)).isDirectory();
|
|
});
|
|
|
|
if (plugins.length) {
|
|
grunt.log.error('===================================================================================================');
|
|
plugins.forEach(plugin => {
|
|
grunt.log.error(`The ${plugin} plugin may disrupt the test process. Consider removing it and re-running your tests.`);
|
|
});
|
|
grunt.log.error('===================================================================================================');
|
|
}
|
|
|
|
done();
|
|
});
|
|
});
|
|
}
|