mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[Security Solution] [Detections] skip individual EQL shard failure test instead of entire suite (#214283)
skips individual failing test instead of entire test suite
This commit is contained in:
parent
98986a86a1
commit
95068042b1
1 changed files with 3 additions and 3 deletions
|
@ -82,8 +82,7 @@ export default ({ getService }: FtrProviderContext) => {
|
|||
const auditPath = dataPathBuilder.getPath('auditbeat/hosts');
|
||||
const packetBeatPath = dataPathBuilder.getPath('packetbeat/default');
|
||||
|
||||
// Failing: See https://github.com/elastic/kibana/issues/209024
|
||||
describe.skip('@ess @serverless @serverlessQA EQL type rules', () => {
|
||||
describe('@ess @serverless @serverlessQA EQL type rules', () => {
|
||||
const { indexListOfDocuments } = dataGeneratorFactory({
|
||||
es,
|
||||
index: 'ecs_compliant',
|
||||
|
@ -248,7 +247,8 @@ export default ({ getService }: FtrProviderContext) => {
|
|||
).eql(1);
|
||||
});
|
||||
|
||||
it('parses shard failures for EQL event query', async () => {
|
||||
// Failing: See https://github.com/elastic/kibana/issues/209024
|
||||
it.skip('parses shard failures for EQL event query', async () => {
|
||||
await esArchiver.load(packetBeatPath);
|
||||
const rule: EqlRuleCreateProps = {
|
||||
...getEqlRuleForAlertTesting(['auditbeat-*', 'packetbeat-*']),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue