mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Lens][FTR] Fix afterAll issue (#189069)
## Summary Fixes #189056, #189057, #164623 Bring back the window handler for other tests correctly. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
a35d3178a8
commit
c47f371471
3 changed files with 5 additions and 6 deletions
|
@ -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({
|
||||
|
@ -223,6 +222,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
expect(await dataViews.isAdHoc()).to.be(true);
|
||||
|
||||
await browser.closeCurrentWindow();
|
||||
const [lensHandle] = await browser.getAllWindowHandles();
|
||||
await browser.switchToWindow(lensHandle);
|
||||
});
|
||||
|
||||
// Failing: See https://github.com/elastic/kibana/issues/164623
|
||||
|
|
|
@ -17,8 +17,7 @@ export default ({ getService, loadTestFile, getPageObjects }: FtrProviderContext
|
|||
const config = getService('config');
|
||||
let remoteEsArchiver;
|
||||
|
||||
// FLAKY: https://github.com/elastic/kibana/issues/189057
|
||||
describe.skip('lens app - group 1', () => {
|
||||
describe('lens app - group 1', () => {
|
||||
const esArchive = 'x-pack/test/functional/es_archives/logstash_functional';
|
||||
const localIndexPatternString = 'logstash-*';
|
||||
const remoteIndexPatternString = 'ftr-remote:logstash-*';
|
||||
|
|
|
@ -45,8 +45,7 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
).to.eql(expectedData);
|
||||
}
|
||||
|
||||
// Failing: See https://github.com/elastic/kibana/issues/189056
|
||||
describe.skip('lens with multiple data views', () => {
|
||||
describe('lens with multiple data views', () => {
|
||||
const visTitle = 'xyChart with multiple data views';
|
||||
|
||||
before(async () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue