Skip to content

Commit

Permalink
[test] Skips test preventing promotion of ES snapshot #71555
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic committed Jul 14, 2020
1 parent 56a2437 commit 8555ecb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export default ({ getService }: FtrProviderContext) => {
const supertest = getService('supertest');
const es = getService('es');

describe('create_rules', () => {
// Preventing ES promotion: https://github.com/elastic/kibana/issues/71555
describe.skip('create_rules', () => {
describe('validation errors', () => {
it('should give an error that the index must exist first if it does not exist before creating a rule', async () => {
const { body } = await supertest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ export default ({ getService }: FtrProviderContext): void => {
const supertest = getService('supertest');
const es = getService('es');

// Preventing ES promotion: https://github.com/elastic/kibana/issues/71555
describe.skip('create_rules_bulk', () => {
describe('create_rules_bulk', () => {
describe('validation errors', () => {
it('should give a 200 even if the index does not exist as all bulks return a 200 but have an error of 409 bad request in the body', async () => {
const { body } = await supertest
Expand Down

0 comments on commit 8555ecb

Please sign in to comment.