kibana/tasks/config/intern.js
2015-12-29 13:37:50 -05:00

19 lines
271 B
JavaScript

var path = require('path');
module.exports = function (grunt) {
return {
options: {
runType: 'runner',
config: 'test/intern',
reporters: ['Console']
},
dev: {},
api: {
options: {
runType: 'client'
}
}
};
};