mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 10:23:14 -04:00
31 lines
817 B
JavaScript
31 lines
817 B
JavaScript
define(function (require) {
|
|
require('intern/dojo/node!../support/env_setup');
|
|
|
|
const bdd = require('intern!bdd');
|
|
const intern = require('intern');
|
|
const earliestBeforeCbs = [];
|
|
|
|
function onEarliestBefore(cb) {
|
|
earliestBeforeCbs.push(cb);
|
|
}
|
|
|
|
global.__kibana__intern__ = { intern, bdd, onEarliestBefore };
|
|
|
|
bdd.describe('kibana', function () {
|
|
bdd.before(function () {
|
|
earliestBeforeCbs.forEach(cb => {
|
|
cb.call(this);
|
|
});
|
|
});
|
|
|
|
require([
|
|
'intern/dojo/node!../support/index',
|
|
'intern/dojo/node!./apps/discover',
|
|
'intern/dojo/node!./status_page',
|
|
'intern/dojo/node!./apps/management',
|
|
'intern/dojo/node!./apps/visualize',
|
|
'intern/dojo/node!./apps/console',
|
|
'intern/dojo/node!./apps/dashboard'
|
|
], function () {});
|
|
});
|
|
});
|