[test] Reverts skipped tests caused by null API name (#71632)

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

This reverts commit 683fb42df7.

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

This reverts commit 8555ecbcf4.

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

This reverts commit b217cb3f96.

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

This reverts commit 0194f8c149.

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

This reverts commit 439f2dd047.
This commit is contained in:
Tyler Smalley 2020-07-15 11:53:40 -07:00 committed by GitHub
parent 97d81288bd
commit d27ac2d5c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 8 deletions

View file

@ -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);

View file

@ -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());

View file

@ -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

View file

@ -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 () => {