mirror of
https://github.com/elastic/kibana.git
synced 2025-04-21 16:29:04 -04:00
9 lines
165 B
JavaScript
9 lines
165 B
JavaScript
module.exports = function (grunt) {
|
|
|
|
grunt.registerTask('travis', 'Travis CI build script', [
|
|
'eslint:source',
|
|
'test:server',
|
|
'test:browser'
|
|
]);
|
|
|
|
};
|