Skip to content

Commit

Permalink
disable more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oatkiller committed Oct 27, 2020
1 parent a935b16 commit 50d44e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,11 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
await pageObjects.common.navigateToApp('globalSearchTestApp');
});

// See https://github.com/elastic/kibana/issues/81397
it.skip('return no results when no provider return results', async () => {
it('return no results when no provider return results', async () => {
const results = await findResultsWithAPI('no_match');
expect(results.length).to.be(0);
});
// See https://github.com/elastic/kibana/issues/81397
it.skip('return results from the client provider', async () => {
it('return results from the client provider', async () => {
const results = await findResultsWithAPI('client');
expect(results.length).to.be(2);
expect(results.map((r) => r.id)).to.eql(['client1', 'client2']);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
import { FtrProviderContext } from '../../ftr_provider_context';

export default function ({ loadTestFile }: FtrProviderContext) {
describe('GlobalSearch API', function () {
// See https://github.com/elastic/kibana/issues/81397
describe.skip('GlobalSearch API', function () {
this.tags('ciGroup7');
loadTestFile(require.resolve('./global_search_api'));
loadTestFile(require.resolve('./global_search_providers'));
Expand Down

0 comments on commit 50d44e7

Please sign in to comment.