mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
remove intern setup (#12201)
#10937 seems to have brought this file back, likely as part of a bad merge resolution
This commit is contained in:
parent
ba7e40f8d6
commit
2a5dab129d
1 changed files with 0 additions and 52 deletions
|
@ -1,52 +0,0 @@
|
|||
'use strict'; // eslint-disable-line
|
||||
|
||||
define(function (require) {
|
||||
require('intern/dojo/node!../support/env_setup');
|
||||
|
||||
const bdd = require('intern!bdd');
|
||||
const intern = require('intern');
|
||||
|
||||
global.__kibana__intern__ = { intern, bdd };
|
||||
|
||||
bdd.describe('kibana', function () {
|
||||
let PageObjects;
|
||||
let support;
|
||||
|
||||
bdd.before(function () {
|
||||
PageObjects.init(this.remote);
|
||||
support.init(this.remote);
|
||||
});
|
||||
const supportPages = [
|
||||
'intern/dojo/node!../support/page_objects',
|
||||
'intern/dojo/node!../support'
|
||||
];
|
||||
|
||||
const requestedApps = process.argv.reduce((previous, arg) => {
|
||||
const option = arg.split('=');
|
||||
const key = option[0];
|
||||
const value = option[1];
|
||||
if (key === 'appSuites' && value) return value.split(',');
|
||||
});
|
||||
|
||||
const apps = [
|
||||
'intern/dojo/node!./apps/xpack',
|
||||
'intern/dojo/node!./apps/discover',
|
||||
'intern/dojo/node!./apps/management',
|
||||
'intern/dojo/node!./apps/visualize',
|
||||
'intern/dojo/node!./apps/console',
|
||||
'intern/dojo/node!./apps/dashboard',
|
||||
'intern/dojo/node!./status_page',
|
||||
'intern/dojo/node!./apps/context'
|
||||
].filter((suite) => {
|
||||
if (!requestedApps) return true;
|
||||
return requestedApps.reduce((previous, app) => {
|
||||
return previous || ~suite.indexOf(app);
|
||||
}, false);
|
||||
});
|
||||
|
||||
require(supportPages.concat(apps), (loadedPageObjects, loadedSupport) => {
|
||||
PageObjects = loadedPageObjects;
|
||||
support = loadedSupport;
|
||||
});
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue