skip flaky test (#48910)

(cherry picked from commit ae2deab4c5)
This commit is contained in:
spalger 2019-10-23 17:46:07 -07:00
parent ec7127852e
commit 123126c27c

View file

@ -27,7 +27,8 @@ export default function ({ getService, getPageObjects }) {
await tearDown();
});
it('should send another request when clicking Refresh', async () => {
// FLAKY: https://github.com/elastic/kibana/issues/48910
it.skip('should send another request when clicking Refresh', async () => {
await testSubjects.click('querySubmitButton');
const isLoading = await PageObjects.header.isGlobalLoadingIndicatorVisible();
expect(isLoading).to.be(true);