[Lens] Unskip open in lens FTR test (#180606)

## Summary

Fixes #179307 

the failing test suite has been moved up in the chain to avoid potential
race conditions with other suites.

Flaky test runner with 100x executions all passing:
https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/5683

- [x] [Unit or functional
tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)
were updated or added to match the most common scenarios
This commit is contained in:
Marco Liberati 2024-04-16 16:11:35 +02:00 committed by GitHub
parent 0b9847dbcf
commit 63bb927473
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 3 deletions

View file

@ -28,8 +28,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
const dashboardAddPanel = getService('dashboardAddPanel');
const filterBar = getService('filterBar');
// FLAKY: https://github.com/elastic/kibana/issues/179307
describe.skip('Dashboard to TSVB to Lens', function describeIndexTests() {
describe('Dashboard to TSVB to Lens', function describeIndexTests() {
before(async () => {
await visualize.initTests();
});

View file

@ -70,10 +70,10 @@ export default function ({ loadTestFile, getService, getPageObjects }: FtrProvid
await kibanaServer.importExport.unload(fixtureDirs.lensDefault);
});
loadTestFile(require.resolve('./dashboard'));
loadTestFile(require.resolve('./metric'));
loadTestFile(require.resolve('./gauge'));
loadTestFile(require.resolve('./timeseries'));
loadTestFile(require.resolve('./dashboard'));
loadTestFile(require.resolve('./top_n'));
loadTestFile(require.resolve('./table'));
});