Skip to content

Commit

Permalink
skipCloud on failing index_lifecycle_management tests (elastic#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 and Mpdreamz committed Sep 6, 2022
1 parent 671ae6d commit 209f7e2
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 209f7e2

Please sign in to comment.