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
28 lines (21 loc) • 572 B
JavaScript
import {
bdd,
remote,
scenarioManager,
defaultTimeout
} from '../../../support';
import PageObjects from '../../../support/page_objects';
bdd.describe('discover app', function () {
this.timeout = defaultTimeout;
bdd.before(function () {
return PageObjects.remote.setWindowSize(1200,800);
});
bdd.after(function unloadMakelogs() {
return scenarioManager.unload('logstashFunctional');
});
require('./_discover');
require('./_field_data');
require('./_shared_links');
require('./_collapse_expand');
require('./_source_filters');
});