mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[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:
parent
0b9847dbcf
commit
63bb927473
2 changed files with 2 additions and 3 deletions
|
@ -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();
|
||||
});
|
||||
|
|
|
@ -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'));
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue