kibana/tasks/config/intern.js
2016-07-19 09:44:24 -05:00

28 lines
489 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')
},
dev: {},
api: {
options: {
runType: 'client',
config: 'test/intern_api'
}
},
visualRegression: {
options: {
runType: 'runner',
config: 'test/intern_visual_regression'
}
}
};
};