Skip to content

Commit

Permalink
[Lens][FTR] Skip failing test (elastic#189039)
Browse files Browse the repository at this point in the history
## Summary

Skip elastic#164623 for now

---------

Co-authored-by: Alex Szabo <[email protected]>
  • Loading branch information
dej611 and delanni authored Jul 24, 2024
1 parent 0694566 commit 997ec8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions x-pack/test/functional/apps/lens/group1/ad_hoc_data_view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 997ec8d

Please sign in to comment.