Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Security Solutoin] [Detections] skip flaky eql sequence test #202977

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2982,7 +2982,8 @@ export default ({ getService }: FtrProviderContext) => {
expect(suppressionEnd).toBeGreaterThan(new Date(secondTimestamp).getDate());
});

it('does not suppress alerts outside of duration', async () => {
// Skipped here: https://github.com/elastic/kibana/issues/202945
it.skip('does not suppress alerts outside of duration', async () => {
const id = uuidv4();
// this timestamp is 1 minute in the past
const firstTimestamp = new Date(Date.now() - 5000).toISOString();
Expand Down Expand Up @@ -3170,7 +3171,8 @@ export default ({ getService }: FtrProviderContext) => {
});
});

it('does not suppress alerts outside of duration when query with 3 sequences', async () => {
// Skipped here: https://github.com/elastic/kibana/issues/202945
it.skip('does not suppress alerts outside of duration when query with 3 sequences', async () => {
const id = uuidv4();
const dateNow = Date.now();
const timestampSequenceEvent1 = new Date(dateNow - 5000).toISOString();
Expand Down
Loading