Skip to content

Commit

Permalink
skipCloud on failing index_lifecycle_management tests (#138673)
Browse files Browse the repository at this point in the history
* skipCloud on failing deployment mgmt tests

* fix type issue

* revert skipping console test

* revert this skipCloud
  • Loading branch information
Lee Drengenberg authored Aug 12, 2022
1 parent 77931ea commit 5188e4b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ export default function ({ getService }: FtrProviderContext) {
const { createSnapshotRepository, cleanupRepositories } =
registerSnapshotRepositoriesHelpers(getService);

describe('snapshot policies', () => {
describe('snapshot policies', function describeSnapshotPoliciesTest() {
// skip Cloud failing test https://github.com/elastic/kibana/issues/136881
this.tags(['skipCloud']);

before(async () => Promise.all([cleanupPolicies(), cleanupRepositories()]));
after(async () => Promise.all([cleanupPolicies(), cleanupRepositories()]));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ export default function ({ getService }: FtrProviderContext) {
const { loadSnapshotRepositories, createSnapshotRepository, cleanupRepositories } =
registerSnapshotRepositoriesHelpers(getService);

describe('snapshot repositories', () => {
describe('snapshot repositories', function describeSnapshotRepositoriesTest() {
// skip Cloud failing test https://github.com/elastic/kibana/issues/136882
this.tags(['skipCloud']);

before(async () => {
isCloud = await deployment.isCloud();
await Promise.all([cleanupRepositories()]);
Expand Down

0 comments on commit 5188e4b

Please sign in to comment.