mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[Security solution] Skip flakey explore tests (#166992)
## Summary Skipping flakey tests as determined by the following runs of the flakey test runner: - https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/3135 - https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/3150 - https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/3162 Tracked in security-team repo
This commit is contained in:
parent
de712c4d64
commit
a679ab5370
3 changed files with 6 additions and 3 deletions
|
@ -53,7 +53,8 @@ import { loginWithUser, visit, visitWithoutDateRange } from '../../../tasks/logi
|
|||
|
||||
import { CASES_URL, OVERVIEW_URL } from '../../../urls/navigation';
|
||||
|
||||
describe('Cases', { tags: ['@ess', '@serverless', '@brokenInServerless'] }, () => {
|
||||
// Tracked by https://github.com/elastic/security-team/issues/7696
|
||||
describe.skip('Cases', { tags: ['@ess', '@serverless', '@brokenInServerless'] }, () => {
|
||||
before(() => {
|
||||
cleanKibana();
|
||||
createTimeline(getCase1().timeline).then((response) =>
|
||||
|
|
|
@ -21,7 +21,8 @@ import { login, visit } from '../../../tasks/login';
|
|||
import { HOSTS_URL } from '../../../urls/navigation';
|
||||
import { clearSearchBar, kqlSearch } from '../../../tasks/security_header';
|
||||
|
||||
describe('risk tab', { tags: ['@ess', '@brokenInServerless'] }, () => {
|
||||
// Tracked by https://github.com/elastic/security-team/issues/7696
|
||||
describe.skip('risk tab', { tags: ['@ess', '@brokenInServerless'] }, () => {
|
||||
before(() => {
|
||||
cleanKibana();
|
||||
cy.task('esArchiverLoad', { archiveName: 'risk_hosts' });
|
||||
|
|
|
@ -23,7 +23,8 @@ const testDomainOne = 'myTest';
|
|||
const testDomainTwo = 'myTest2';
|
||||
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/165692
|
||||
describe('Overflow items', { tags: ['@ess', '@serverless', '@brokenInServerless'] }, () => {
|
||||
// Tracked by https://github.com/elastic/security-team/issues/7696
|
||||
describe.skip('Overflow items', { tags: ['@ess', '@serverless', '@brokenInServerless'] }, () => {
|
||||
context('Network stats and tables', () => {
|
||||
before(() => {
|
||||
cy.task('esArchiverLoad', { archiveName: 'network' });
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue