[performance/journeys] revert data_stress_test_lens.ts journey step (#144261)

* [performance/journeys] open lens dashboard from dashboard list

* revert to original test structure

* [CI] Auto-commit changed files from 'node scripts/precommit_hook.js --ref HEAD~1..HEAD --fix'

* revert step name

Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Dzmitry Lemechko 2022-10-31 21:04:08 +01:00 committed by GitHub
parent f876dc6a2d
commit 5ca5ef3d00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,7 +6,7 @@
*/
import { Journey } from '@kbn/journeys';
import { waitForChrome, waitForVisualizations } from '../utils';
import { waitForVisualizations } from '../utils';
export const journey = new Journey({
kbnArchives: ['test/functional/fixtures/kbn_archiver/stress_test'],
@ -14,7 +14,5 @@ export const journey = new Journey({
}).step('Go to dashboard', async ({ page, kbnUrl, kibanaServer }) => {
await kibanaServer.uiSettings.update({ 'histogram:maxBars': 100 });
await page.goto(kbnUrl.get(`/app/dashboards#/view/92b143a0-2e9c-11ed-b1b6-a504560b392c`));
await waitForChrome(page);
await waitForVisualizations(page, 1);
});