move skip to higher level (#86952)

This commit is contained in:
spalger 2021-02-01 17:52:53 -07:00
parent f97958043f
commit 541637993f
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,8 @@ import { setupSpacesAndUsers, tearDown } from '..';
// eslint-disable-next-line import/no-default-export
export default function alertingTests({ loadTestFile, getService }: FtrProviderContext) {
describe('Alerts', () => {
describe('legacy alerts', () => {
// FLAKY: https://github.com/elastic/kibana/issues/86952
describe.skip('legacy alerts', () => {
before(async () => {
await setupSpacesAndUsers(getService);
});

View file

@ -28,8 +28,7 @@ export default function alertTests({ getService }: FtrProviderContext) {
superuser: 'b384be60-ec53-4b26-857e-0253ee55b277',
};
// FLAKY: https://github.com/elastic/kibana/issues/86952
describe.skip('alerts', () => {
describe('alerts', () => {
const authorizationIndex = '.kibana-test-authorization';
const objectRemover = new ObjectRemover(supertest);