Skip to content

Commit

Permalink
[8.11] [Synthetics] Unskip data retention tests (#169071) (#169233)
Browse files Browse the repository at this point in the history
# Backport

This will backport the following commits from `main` to `8.11`:
- [[Synthetics] Unskip data retention tests
(#169071)](#169071)

<!--- Backport version: 8.9.7 -->

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sqren/backport)

<!--BACKPORT
[{"author":{"name":"Shahzad","email":"shahzad31comp@gmail.com"},"sourceCommit":{"committedDate":"2023-10-18T12:54:45Z","message":"[Synthetics]
Unskip data retention tests
(#169071)","sha":"848c21a8d21023da038555f712e2c808c4eff885","branchLabelMapping":{"^v8.12.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["Team:uptime","release_note:skip","v8.11.0","v8.12.0"],"number":169071,"url":"https://github.com/elastic/kibana/pull/169071","mergeCommit":{"message":"[Synthetics]
Unskip data retention tests
(#169071)","sha":"848c21a8d21023da038555f712e2c808c4eff885"}},"sourceBranch":"main","suggestedTargetBranches":["8.11"],"targetPullRequestStates":[{"branch":"8.11","label":"v8.11.0","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v8.12.0","labelRegex":"^v8.12.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/169071","number":169071,"mergeCommit":{"message":"[Synthetics]
Unskip data retention tests
(#169071)","sha":"848c21a8d21023da038555f712e2c808c4eff885"}}]}]
BACKPORT-->

Co-authored-by: Shahzad <shahzad31comp@gmail.com>
  • Loading branch information
kibanamachine and shahzad31 authored Oct 18, 2023
1 parent 8a57408 commit 618aa5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ journey(`DataRetentionPage`, async ({ page, params }) => {
const screenshotChecks = await page.textContent(
`tr:has-text("Browser Screenshots") span:has-text("KB")`
);
expect(Number(allChecks?.split('KB')[0])).toBeGreaterThan(450);
expect(Number(allChecks?.split('KB')[0])).toBeGreaterThan(400);
expect(Number(browserChecks?.split('KB')[0])).toBeGreaterThan(50);
expect(Number(networkChecks?.split('KB')[0])).toBeGreaterThan(300);
expect(Number(screenshotChecks?.split('KB')[0])).toBeGreaterThan(25);
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/synthetics/e2e/synthetics/journeys/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* 2.0.
*/

export * from './data_retention.journey';
export * from './project_api_keys.journey';
export * from './getting_started.journey';
export * from './add_monitor.journey';
Expand All @@ -19,7 +20,6 @@ export * from './global_parameters.journey';
export * from './detail_flyout';
// export * from './alert_rules/default_status_alert.journey';
export * from './test_now_mode.journey';
// export * from './data_retention.journey';
export * from './monitor_details_page/monitor_summary.journey';
export * from './test_run_details.journey';
export * from './step_details.journey';
Expand Down

0 comments on commit 618aa5e

Please sign in to comment.