Make security rules optional (revert #97191) (#98854)

This commit is contained in:
Ross Wolf 2021-04-29 19:59:52 -06:00 committed by GitHub
parent 8bd47f4194
commit 0ddea04544
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 8 deletions

View file

@ -16,7 +16,6 @@ export const requiredPackages = {
Endpoint: 'endpoint',
ElasticAgent: 'elastic_agent',
FleetServer: FLEET_SERVER_PACKAGE,
SecurityDetectionEngine: 'security_detection_engine',
} as const;
// these are currently identical. we can separate if they later diverge

View file

@ -75,13 +75,7 @@ export default function (providerContext: FtrProviderContext) {
.map((p: any) => p.name)
.sort();
expect(installedPackages).to.eql([
'elastic_agent',
'endpoint',
'fleet_server',
'security_detection_engine',
'system',
]);
expect(installedPackages).to.eql(['elastic_agent', 'endpoint', 'fleet_server', 'system']);
});
});
}