kibana/tasks/jenkins.js
archana 3683723041 Deprecate test:ui commands (#21092)
* Deprecate test:ui commands
2018-07-23 14:51:15 -05:00

23 lines
476 B
JavaScript

module.exports = function (grunt) {
grunt.registerTask('jenkins:docs', [
'docker:docs'
]);
grunt.registerTask('jenkins:unit', [
'run:eslint',
'licenses',
'run:verifyNotice',
'test:server',
'test:jest',
'test:jest_integration',
'test:projects',
'test:browser-ci',
'run:apiIntegrationTests',
'verifyTranslations',
]);
grunt.registerTask('jenkins:selenium', [
'checkPlugins',
'run:functionalTestsRelease',
]);
};