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
27 lines (21 loc) • 609 B
JavaScript
define(function (require) {
require('intern/dojo/node!../support/env_setup');
const bdd = require('intern!bdd');
const intern = require('intern');
const initCallbacks = [];
function onInit(callback) {
initCallbacks.push(callback);
}
global.__kibana__intern__ = { intern, bdd, onInit };
bdd.describe('Kibana visual regressions', function () {
bdd.before(function () {
initCallbacks.forEach(callback => {
callback.call(this);
});
});
require([
'intern/dojo/node!../support/index',
'intern/dojo/node!./home',
], function () {});
});
});