kibana/tasks/config/intern.js

19 lines
271 B
JavaScript
Raw Normal View History

var path = require('path');
module.exports = function (grunt) {
return {
options: {
runType: 'runner',
config: 'test/intern',
reporters: ['Console']
},
2015-11-17 19:01:45 +01:00
dev: {},
api: {
options: {
runType: 'client'
}
}
};
};