Skip to content

Commit

Permalink
Fix ILM policies api integration test (#41263)
Browse files Browse the repository at this point in the history
  • Loading branch information
jen-huang committed Jul 16, 2019
1 parent a862f3f commit ea2cb5d
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,9 @@ export default function ({ getService }) {
after(() => Promise.all([cleanUpEsResources(), cleanUpPolicies()]));

describe('list', () => {
// FAILING: https://github.com/elastic/kibana/issues/41237
it.skip('should have a default policy to manage the Watcher history indices', async () => {
it('should have a default policy to manage the Watcher history indices', async () => {
const { body } = await loadPolicies().expect(200);
const [policy = {}] = body;
const policy = body.find(policy => policy.name === DEFAULT_POLICY_NAME);

// We manually set the date for deterministic test
const modifiedDate = '2019-04-30T14:30:00.000Z';
Expand Down

0 comments on commit ea2cb5d

Please sign in to comment.