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
26 lines (21 loc) • 800 B
JavaScript
import { bdd, defaultTimeout, scenarioManager, esClient, common } from '../../../support';
bdd.describe('settings app', function () {
this.timeout = defaultTimeout;
// on setup, we create an settingsPage instance
// that we will use for all the tests
bdd.before(async function () {
await scenarioManager.unload('logstashFunctional');
await scenarioManager.loadIfEmpty('makelogs');
});
bdd.after(async function () {
await scenarioManager.unload('makelogs');
await esClient.delete('.kibana');
});
require('./_initial_state');
require('./_creation_form_changes');
require('./_index_pattern_create_delete');
require('./_index_pattern_results_sort');
require('./_index_pattern_popularity');
require('./_kibana_settings');
require('./_scripted_fields');
});