Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Logs Explorer] Disable the too-slow url check in functional test #173092

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions x-pack/test/functional/page_objects/observability_log_explorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,12 @@ export function ObservabilityLogExplorerPageObject({
return await PageObjects.common.navigateToUrlWithBrowserHistory(
'observabilityLogExplorer',
'/',
queryStringParams
queryStringParams,
{
// the check sometimes is too slow for the page so it misses the point
// in time before the app rewrites the URL
ensureCurrentUrl: false,
}
);
},

Expand All @@ -246,7 +251,12 @@ export function ObservabilityLogExplorerPageObject({
return await PageObjects.common.navigateToUrlWithBrowserHistory(
'observabilityLogExplorer',
'/',
queryStringParams
queryStringParams,
{
// the check sometimes is too slow for the page so it misses the point
// in time before the app rewrites the URL
ensureCurrentUrl: false,
}
);
},

Expand Down
Loading