Skip to content

Commit

Permalink
skip flaky suite (#71867)
Browse files Browse the repository at this point in the history
(cherry picked from commit d74cd9e)
  • Loading branch information
spalger committed Jul 15, 2020
1 parent b642f4f commit 670e730
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe('Alerts rules, prebuilt rules', () => {
});
});

// https://github.com/elastic/kibana/issues/71814
// FLAKY: https://github.com/elastic/kibana/issues/71814
describe.skip('Deleting prebuilt rules', () => {
beforeEach(() => {
const expectedNumberOfRules = totalNumberOfPrebuiltRules;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export default ({ getService }: FtrProviderContext): void => {
const supertest = getService('supertest');
const es = getService('es');

describe('add_prepackaged_rules', () => {
// FLAKY: https://github.com/elastic/kibana/issues/71867
describe.skip('add_prepackaged_rules', () => {
describe('validation errors', () => {
it('should give an error that the index must exist first if it does not exist before adding prepackaged rules', async () => {
const { body } = await supertest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default ({ getService }: FtrProviderContext): void => {
const supertest = getService('supertest');
const es = getService('es');

// https://github.com/elastic/kibana/issues/71814
// FLAKY: https://github.com/elastic/kibana/issues/71814
describe.skip('add_prepackaged_rules', () => {
describe('validation errors', () => {
it('should give an error that the index must exist first if it does not exist before adding prepackaged rules', async () => {
Expand Down

0 comments on commit 670e730

Please sign in to comment.