mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[Fleet] fix multi space test (#162113)
## Summary Fixes https://github.com/elastic/kibana/issues/161624 Test failed due to an unrelated endpoint installation error, loading empty ES to make sure endpoint doesn't cause trouble, as the test installs system integration.
This commit is contained in:
parent
7485343af2
commit
82eaddd86c
1 changed files with 3 additions and 0 deletions
|
@ -16,6 +16,7 @@ export default function (providerContext: FtrProviderContext) {
|
|||
const kibanaServer = getService('kibanaServer');
|
||||
const supertest = getService('supertest');
|
||||
const dockerServers = getService('dockerServers');
|
||||
const esArchiver = getService('esArchiver');
|
||||
const server = dockerServers.get('registry');
|
||||
const pkgName = 'system';
|
||||
const pkgVersion = '1.27.0';
|
||||
|
@ -72,6 +73,7 @@ export default function (providerContext: FtrProviderContext) {
|
|||
|
||||
before(async () => {
|
||||
if (!server.enabled) return;
|
||||
await esArchiver.load('x-pack/test/functional/es_archives/fleet/empty_fleet_server');
|
||||
await installPackage(pkgName, pkgVersion);
|
||||
|
||||
await createSpace(testSpaceId);
|
||||
|
@ -81,6 +83,7 @@ export default function (providerContext: FtrProviderContext) {
|
|||
|
||||
after(async () => {
|
||||
await deleteSpace(testSpaceId);
|
||||
await esArchiver.unload('x-pack/test/functional/es_archives/fleet/empty_fleet_server');
|
||||
});
|
||||
|
||||
it('should install kibana assets', async function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue