Skip to content

Commit

Permalink
[test] Reverts skipped tests caused by null API name (#71632) (#71930)
Browse files Browse the repository at this point in the history
* Revert "[test] Skips test preventing promotion of ES snapshot #71582"

This reverts commit 683fb42.

* Revert "[test] Skips test preventing promotion of ES snapshot #71555"

This reverts commit 8555ecb.

* Revert "[test] Skips Alerting test preventing ES snapshot promotion"

This reverts commit b217cb3.

* Revert "[test] Skips test preventing promotion of ES snapshot"

This reverts commit 0194f8c.

* Revert "[skip test] Skips Alerting API test due to failing ES promotion"

This reverts commit 439f2dd.
  • Loading branch information
Tyler Smalley authored Jul 15, 2020
1 parent a009663 commit 585c367
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ export default function alertTests({ getService }: FtrProviderContext) {
const esTestIndexTool = new ESTestIndexTool(es, retry);
const taskManagerUtils = new TaskManagerUtils(es, retry);

// Failing ES promotion: https://github.com/elastic/kibana/issues/71582
describe.skip('alerts', () => {
describe('alerts', () => {
const authorizationIndex = '.kibana-test-authorization';
const objectRemover = new ObjectRemover(supertest);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ export default function createUpdateTests({ getService }: FtrProviderContext) {
.then((response: SupertestResponse) => response.body);
}

// Failing ES promotion: https://github.com/elastic/kibana/issues/71558
describe.skip('update', () => {
describe('update', () => {
const objectRemover = new ObjectRemover(supertest);

after(() => objectRemover.removeAll());
Expand Down
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 @@ -19,8 +19,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
const retry = getService('retry');
const find = getService('find');

// Failing ES Promotion: https://github.com/elastic/kibana/issues/71559
describe.skip('Alert Details', function () {
describe('Alert Details', function () {
describe('Header', function () {
const testRunUuid = uuid.v4();
before(async () => {
Expand Down

0 comments on commit 585c367

Please sign in to comment.