kibana-123
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
30 lines (27 loc) • 591 B
JavaScript
var path = require('path');
module.exports = function (grunt) {
return {
options: {
runType: 'runner',
config: 'test/intern',
bail: true,
reporters: ['Console'],
grep: grunt.option('grep'),
functionalSuites: grunt.option('functionalSuites'),
appSuites: grunt.option('appSuites')
},
dev: {},
api: {
options: {
runType: 'client',
config: 'test/intern_api'
}
},
visualRegression: {
options: {
runType: 'runner',
config: 'test/intern_visual_regression'
}
}
};
};