Skip to content

Commit

Permalink
[Alerting] disables a flaky test in alerting (#53696)
Browse files Browse the repository at this point in the history
* disabled flaky test

* use skip instead of comment
  • Loading branch information
gmmorris authored and mikecote committed Dec 20, 2019
1 parent 058a718 commit fc999e5
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,16 @@ export default function alertTests({ getService }: FtrProviderContext) {
}
});

it(`shouldn't schedule actions when alert is muted`, async () => {
/**
* Skipping due to an issue we've discovered in the `muteAll` api
* which corrupts the apiKey and causes this test to exhibit flaky behaviour.
* Failed CIs for example:
* 1. https://github.com/elastic/kibana/issues/53690
* 2. https://github.com/elastic/kibana/issues/53683
*
* This will be fixed and reverted in PR: https://github.com/elastic/kibana/pull/53333
*/
it.skip(`shouldn't schedule actions when alert is muted`, async () => {
const testStart = new Date();
const reference = alertUtils.generateReference();
const response = await alertUtils.createAlwaysFiringAction({
Expand Down

0 comments on commit fc999e5

Please sign in to comment.