kibana-123
Version:
Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic
36 lines (28 loc) • 934 B
JavaScript
require('ace');
const module = require('ui/modules').get('app/sense');
module.run(function (Private, $rootScope) {
module.setupResizeCheckerForRootEditors = ($el, ...editors) => {
// mock the resize checker
};
});
require('ui/chrome')
.setRootTemplate(require('./index.html'))
.setRootController(function () {
window.QUnit = require('qunit-1.10.0');
require('qunit-1.10.0.css');
require('ace');
/* global QUnit */
QUnit.config.autostart = false;
QUnit.init();
require('./src/utils_tests.js');
require('./src/url_autocomplete_tests.js');
require('./src/url_params_tests.js');
require('./src/curl_parsing_tests.js');
require('./src/kb_tests.js');
require('./src/mapping_tests.js');
require('./src/editor_tests.js');
require('./src/tokenization_tests.js');
require('./src/integration_tests.js');
console.log('all tests loaded');
QUnit.start();
});