Skip to content

Commit

Permalink
skip flaky suite, and dependent suite (#90229)
Browse files Browse the repository at this point in the history
  • Loading branch information
spalger committed Feb 3, 2021
1 parent 9232a5a commit 27a53cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ export default ({ getService }: FtrProviderContext) => {
const supertestWithoutAuth = getService('supertestWithoutAuth');
const security = getService('security');

describe('create_index', () => {
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/90229
describe.skip('create_index', () => {
afterEach(async () => {
await deleteSignalsIndex(supertest);
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export default ({ getService }: FtrProviderContext) => {
const supertest = getService('supertest');
const supertestWithoutAuth = getService('supertestWithoutAuth');

describe('read_privileges', () => {
// FAILING ES PROMOTION: https://github.com/elastic/kibana/issues/90229
describe.skip('read_privileges', () => {
it('should return expected privileges for elastic admin', async () => {
const { body } = await supertest.get(DETECTION_ENGINE_PRIVILEGES_URL).send().expect(200);
expect(body).to.eql({
Expand Down

0 comments on commit 27a53cf

Please sign in to comment.