Skip to content

Commit 585c367

Browse files
author
Tyler Smalley
authored
[test] Reverts skipped tests caused by null API name (#71632) (#71930)
* 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.
1 parent a009663 commit 585c367

File tree

4 files changed

+4
-8
lines changed
  • x-pack/test

4 files changed

+4
-8
lines changed

x-pack/test/alerting_api_integration/security_and_spaces/tests/alerting/alerts.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ export default function alertTests({ getService }: FtrProviderContext) {
2626
const esTestIndexTool = new ESTestIndexTool(es, retry);
2727
const taskManagerUtils = new TaskManagerUtils(es, retry);
2828

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

x-pack/test/alerting_api_integration/security_and_spaces/tests/alerting/update.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ export default function createUpdateTests({ getService }: FtrProviderContext) {
2929
.then((response: SupertestResponse) => response.body);
3030
}
3131

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

3635
after(() => objectRemover.removeAll());

x-pack/test/detection_engine_api_integration/security_and_spaces/tests/create_rules.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ export default ({ getService }: FtrProviderContext) => {
3131
const supertest = getService('supertest');
3232
const es = getService('es');
3333

34-
// Preventing ES promotion: https://github.com/elastic/kibana/issues/71555
35-
describe.skip('create_rules', () => {
34+
describe('create_rules', () => {
3635
describe('validation errors', () => {
3736
it('should give an error that the index must exist first if it does not exist before creating a rule', async () => {
3837
const { body } = await supertest

x-pack/test/functional_with_es_ssl/apps/triggers_actions_ui/details.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
1919
const retry = getService('retry');
2020
const find = getService('find');
2121

22-
// Failing ES Promotion: https://github.com/elastic/kibana/issues/71559
23-
describe.skip('Alert Details', function () {
22+
describe('Alert Details', function () {
2423
describe('Header', function () {
2524
const testRunUuid = uuid.v4();
2625
before(async () => {

0 commit comments

Comments
 (0)