mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
24 lines
562 B
JavaScript
24 lines
562 B
JavaScript
module.exports = function (grunt) {
|
|
grunt.registerTask('jenkins:docs', [
|
|
'docker:docs'
|
|
]);
|
|
|
|
grunt.registerTask('jenkins:unit', [
|
|
'run:eslint',
|
|
'licenses',
|
|
'verifyDependencyVersions',
|
|
'run:verifyNotice',
|
|
'test:server',
|
|
'test:jest',
|
|
'test:jest_integration',
|
|
'test:projects',
|
|
'test:browser-ci',
|
|
'test:api',
|
|
'verifyTranslations',
|
|
]);
|
|
|
|
grunt.config.set('functional_test_runner.functional.options.configOverrides.mochaOpts.bail', true);
|
|
grunt.registerTask('jenkins:selenium', [
|
|
'test:uiRelease'
|
|
]);
|
|
};
|