mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
13 lines
202 B
JavaScript
13 lines
202 B
JavaScript
var path = require('path');
|
|
|
|
|
|
module.exports = function (grunt) {
|
|
return {
|
|
options: {
|
|
runType: 'runner',
|
|
config: 'test/intern',
|
|
reporters: ['Console']
|
|
},
|
|
dev: {}
|
|
};
|
|
};
|