mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 10:23:14 -04:00
20 lines
324 B
JavaScript
20 lines
324 B
JavaScript
var path = require('path');
|
|
|
|
|
|
module.exports = function (grunt) {
|
|
return {
|
|
options: {
|
|
runType: 'runner',
|
|
config: 'test/intern',
|
|
bail: true,
|
|
reporters: ['Console']
|
|
},
|
|
dev: {},
|
|
api: {
|
|
options: {
|
|
runType: 'client',
|
|
config: 'test/api_intern'
|
|
}
|
|
}
|
|
};
|
|
};
|