Skip to content

Commit

Permalink
fix skip failing test suite (#182263, #182284)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbudz committed May 1, 2024
1 parent 8ee92ec commit 6f598d5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ const findTestUtils = (
supertest: SuperTest<Test>,
supertestWithoutAuth: any
) => {
// Failing: See https://github.com/elastic/kibana/issues/182263
// Failing: See https://github.com/elastic/kibana/issues/182284
describe.skip(describeType, () => {
afterEach(() => objectRemover.removeAll());

Expand Down Expand Up @@ -653,7 +651,9 @@ export default function createFindTests({ getService }: FtrProviderContext) {
const supertest = getService('supertest');
const supertestWithoutAuth = getService('supertestWithoutAuth');

describe('find', () => {
// Failing: See https://github.com/elastic/kibana/issues/182263
// Failing: See https://github.com/elastic/kibana/issues/182284
describe.skip('find', () => {
const objectRemover = new ObjectRemover(supertest);

afterEach(() => objectRemover.removeAll());
Expand Down

0 comments on commit 6f598d5

Please sign in to comment.