Skip to content

Commit

Permalink
[ILM] Skip failing API integration test (#62779)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebelga authored Apr 7, 2020
1 parent 8eb9fdd commit c92289d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ export default function({ getService }) {
after(() => Promise.all([cleanUpEsResources(), cleanUpPolicies()]));

describe('list', () => {
it('should have a default policy to manage the Watcher history indices', async () => {
// Disabled as the underline ES API has changed. Need to investigate
// Opened issue: https://github.com/elastic/kibana/issues/62778
it.skip('should have a default policy to manage the Watcher history indices', async () => {
const { body } = await loadPolicies().expect(200);
const policy = body.find(policy => policy.name === DEFAULT_POLICY_NAME);

Expand Down

0 comments on commit c92289d

Please sign in to comment.