[Lens][FTR] Skip failing test (#189039)

## Summary

Skip #164623 for now

---------

Co-authored-by: Alex Szabo <alex.szabo@elastic.co>
This commit is contained in:
Marco Liberati 2024-07-24 12:21:59 +02:00 committed by GitHub
parent 0694566dda
commit 997ec8dd49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -73,8 +73,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
expect(await dataViews.isAdHoc()).to.be(true);
};
// Failing: See https://github.com/elastic/kibana/issues/164623
describe.skip('lens ad hoc data view tests', () => {
describe('lens ad hoc data view tests', () => {
it('should allow building a chart based on ad hoc data view', async () => {
await setupAdHocDataView();
await PageObjects.lens.configureDimension({
@ -225,7 +224,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
await browser.closeCurrentWindow();
});
it('should navigate to discover from embeddable correctly', async () => {
// Failing: See https://github.com/elastic/kibana/issues/164623
it.skip('should navigate to discover from embeddable correctly', async () => {
const [lensHandle] = await browser.getAllWindowHandles();
await browser.switchToWindow(lensHandle);
await PageObjects.header.waitUntilLoadingHasFinished();