Revert "Revert: [7.x] [FTR][CI] Use default distribution for all tests (#102019) (#102580)

* Revert "Revert: [7.x] [FTR][CI] Use default distribution for all tests (#102019)"

This reverts commit c272bdbc25.

* [FTR] Stabilize SSLP functional tests (#102553)

* Removes spaces check, since spaces should always be available
* Disables Monitoring, SecuritySolutions, and Reporting in SSPL tests
until #102552 is completed

Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Tyler Smalley 2021-06-21 00:28:12 -07:00 committed by GitHub
parent bd9feb921d
commit 6977be0140
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
76 changed files with 2609 additions and 5028 deletions

View file

@ -44,15 +44,19 @@ const assertStatsAndMetrics = (body) => {
export default function ({ getService }) {
const supertest = getService('supertest');
const esArchiver = getService('esArchiver');
const kibanaServer = getService('kibanaServer');
describe('kibana stats api', () => {
before('make sure there are some saved objects', () =>
esArchiver.load('test/api_integration/fixtures/es_archiver/saved_objects/basic')
);
after('cleanup saved objects changes', () =>
esArchiver.unload('test/api_integration/fixtures/es_archiver/saved_objects/basic')
);
before(async () => {
await kibanaServer.importExport.load(
'test/api_integration/fixtures/kbn_archiver/saved_objects/basic.json'
);
});
after(async () => {
await kibanaServer.importExport.unload(
'test/api_integration/fixtures/kbn_archiver/saved_objects/basic.json'
);
});
describe('basic', () => {
it('should return the stats without cluster_uuid with no query string params', () => {