Skip to content

Commit

Permalink
Revert "[test] Skips test preventing promotion of ES snapshot elastic…
Browse files Browse the repository at this point in the history
…#71555"

This reverts commit 8555ecb.
  • Loading branch information
Tyler Smalley committed Jul 14, 2020
1 parent 4d58cbd commit 7ff045a
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,8 +31,7 @@ export default ({ getService }: FtrProviderContext) => {
const supertest = getService('supertest');
const es = getService('es');

// Preventing ES promotion: https://github.com/elastic/kibana/issues/71555
describe.skip('create_rules', () => {
describe('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,7 +29,8 @@ export default ({ getService }: FtrProviderContext): void => {
const supertest = getService('supertest');
const es = getService('es');

describe('create_rules_bulk', () => {
// Preventing ES promotion: https://github.com/elastic/kibana/issues/71555
describe.skip('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 7ff045a

Please sign in to comment.