We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 459d6ec commit 8a30eeeCopy full SHA for 8a30eee
1 file changed
x-pack/test/api_integration/apis/management/index_lifecycle_management/policies.js
@@ -32,7 +32,9 @@ export default function({ getService }) {
32
after(() => Promise.all([cleanUpEsResources(), cleanUpPolicies()]));
33
34
describe('list', () => {
35
- it('should have a default policy to manage the Watcher history indices', async () => {
+ // Disabled as the underline ES API has changed. Need to investigate
36
+ // Opened issue: https://github.com/elastic/kibana/issues/62778
37
+ it.skip('should have a default policy to manage the Watcher history indices', async () => {
38
const { body } = await loadPolicies().expect(200);
39
const policy = body.find(policy => policy.name === DEFAULT_POLICY_NAME);
40
0 commit comments