From d17ec6939165930a93d7bee4167e46c312719b59 Mon Sep 17 00:00:00 2001 From: Jialiang Liang <109499885+RyanL1997@users.noreply.github.com> Date: Wed, 10 Jan 2024 15:45:38 -0800 Subject: [PATCH 1/2] [Enhancement/Fix] Refactor datasources cypress tests (#1323) * Fix the datasources cypress tests Signed-off-by: Ryan Liang * Clean up test setup and setup constants Signed-off-by: Ryan Liang * Refactor datasources test and disable security config Signed-off-by: Ryan Liang * Fix some lint Signed-off-by: Ryan Liang * Switch to capitalized naming Signed-off-by: Ryan Liang * Fix lint Signed-off-by: Ryan Liang * debugging Signed-off-by: Ryan Liang * List out all the changed files Signed-off-by: Ryan Liang * Add output for file changes Signed-off-by: Ryan Liang * Switch to use env var Signed-off-by: Ryan Liang * Add echo Signed-off-by: Ryan Liang * Remove github env setup Signed-off-by: Ryan Liang * Add msg to check which file is being linted Signed-off-by: Ryan Liang * Use jq for parsing Signed-off-by: Ryan Liang * Lint both modified and added Signed-off-by: Ryan Liang --------- Signed-off-by: Ryan Liang --- .../datasources_test/datasources.spec.js | 42 ------------ .../datasources_basic_ui.spec.js | 67 +++++++++++++++++++ .cypress/utils/constants.js | 11 +++ .../workflows/integration-tests-workflow.yml | 9 +++ .github/workflows/lint.yml | 33 +++++---- cypress.config.js | 4 +- 6 files changed, 108 insertions(+), 58 deletions(-) delete mode 100644 .cypress/integration/datasources_test/datasources.spec.js create mode 100644 .cypress/integration/datasources_test/datasources_basic_ui.spec.js diff --git a/.cypress/integration/datasources_test/datasources.spec.js b/.cypress/integration/datasources_test/datasources.spec.js deleted file mode 100644 index fdfe21b285..0000000000 --- a/.cypress/integration/datasources_test/datasources.spec.js +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright OpenSearch Contributors - * SPDX-License-Identifier: Apache-2.0 - */ - -/// - - - const moveToDatasourcesHome = () => { - cy.visit(`${Cypress.env('opensearchDashboards')}/app/datasources`); - }; - - const moveToNewDatasourcesPage = () => { - cy.visit(`${Cypress.env('opensearchDashboards')}/app/datasources#/new`); - }; - - const moveToCreatePrometheusDatasourcePage = () => { - cy.visit(`${Cypress.env('opensearchDashboards')}/app/datasources#/configure/PROMETHEUS`); - }; - - describe('Integration tests for datasources plugin', () => { - const testPrometheusSuffix = (Math.random() + 1).toString(36).substring(7); -const testPrometheusInstance = `Prometheus_${testPrometheusSuffix}`; -const testS3Suffix = (Math.random() + 1).toString(36).substring(7); -const testS3Instance = `S3_${testS3Suffix}`; - it('Navigates to datasources plugin and expects the correct header', () => { - moveToDatasourcesHome(); - cy.get('[data-test-subj="dataconnections-header"]').should('exist'); - }); - - it('Tests navigation between tabs and goes to Prometheus creation flow', () => { - moveToDatasourcesHome(); - cy.get('[data-test-subj="new"]').click(); - cy.url().should('include', '/new') - cy.get('[data-test-subj="datasource_card_prometheus"]').click(); - cy.url().should('include', '/configure/PROMETHEUS'); - }); - -}); - - - diff --git a/.cypress/integration/datasources_test/datasources_basic_ui.spec.js b/.cypress/integration/datasources_test/datasources_basic_ui.spec.js new file mode 100644 index 0000000000..4f9259ef5e --- /dev/null +++ b/.cypress/integration/datasources_test/datasources_basic_ui.spec.js @@ -0,0 +1,67 @@ +/* + * Copyright OpenSearch Contributors + * SPDX-License-Identifier: Apache-2.0 + */ + +import { FONTEND_BASE_PATH, DATASOURCES_API_PREFIX, DATASOURCES_PATH } from '../../utils/constants'; + +const MANAGE_DATASOURCES_TAG = 'button[data-test-subj="manage"]'; +const NEW_DATASOURCES_TAG = 'button[data-test-subj="new"]'; +const CREATE_S3_BUTTON = '[data-test-subj="datasource_card_s3glue"]'; +const CREATE_PROMETHEUS_BUTTON = '[data-test-subj="datasource_card_prometheus"]'; + +const visitDatasourcesHomePage = () => { + cy.visit(FONTEND_BASE_PATH + DATASOURCES_API_PREFIX); +}; + +const visitDatasourcesCreationPage = () => { + cy.visit(FONTEND_BASE_PATH + DATASOURCES_PATH.DATASOURCES_CREATION_BASE); +}; + +describe('Integration tests for datasources plugin', () => { + it('Navigates to datasources plugin and expects the correct header', () => { + visitDatasourcesHomePage(); + cy.get('[data-test-subj="dataconnections-header"]').should('exist'); + }); + + it('Tests navigation between tabs', () => { + visitDatasourcesHomePage(); + + cy.get(MANAGE_DATASOURCES_TAG) + .should('have.class', 'euiTab-isSelected') + .and('have.attr', 'aria-selected', 'true'); + cy.get(MANAGE_DATASOURCES_TAG).click(); + cy.url().should('include', '/manage'); + + cy.get(NEW_DATASOURCES_TAG).click(); + cy.get(NEW_DATASOURCES_TAG) + .should('have.class', 'euiTab-isSelected') + .and('have.attr', 'aria-selected', 'true'); + cy.url().should('include', '/new'); + + cy.get(CREATE_S3_BUTTON).should('be.visible'); + cy.get(CREATE_PROMETHEUS_BUTTON).should('be.visible'); + }); + + it('Tests navigation of S3 datasources creation page with hash', () => { + visitDatasourcesCreationPage(); + + cy.get(CREATE_S3_BUTTON).should('be.visible').click(); + cy.url().should('include', DATASOURCES_PATH.DATASOURCES_CONFIG_BASE + '/AmazonS3AWSGlue'); + + cy.get('h1.euiTitle.euiTitle--medium') + .should('be.visible') + .and('contain', 'Configure Amazon S3 data source'); + }); + + it('Tests navigation of Prometheus datasources creation page with hash', () => { + visitDatasourcesCreationPage(); + + cy.get(CREATE_PROMETHEUS_BUTTON).should('be.visible').click(); + cy.url().should('include', DATASOURCES_PATH.DATASOURCES_CONFIG_BASE + '/Prometheus'); + + cy.get('h4.euiTitle.euiTitle--medium') + .should('be.visible') + .and('contain', 'Configure Prometheus data source'); + }); +}); diff --git a/.cypress/utils/constants.js b/.cypress/utils/constants.js index af655fbe3e..706061baff 100644 --- a/.cypress/utils/constants.js +++ b/.cypress/utils/constants.js @@ -6,6 +6,17 @@ export const delay = 1500; export const COMMAND_TIMEOUT_LONG = 10000; +//BASE Constants +export const BACKEND_BASE_PATH = Cypress.env('opensearch'); +export const FONTEND_BASE_PATH = Cypress.env('opensearchDashboards'); + +//Datasources API Constants +export const DATASOURCES_API_PREFIX = '/app/datasources'; +export const DATASOURCES_PATH = { + DATASOURCES_CREATION_BASE: `${DATASOURCES_API_PREFIX}#/new`, + DATASOURCES_CONFIG_BASE: `${DATASOURCES_API_PREFIX}#/configure` +}; + // trace analytics export const TRACE_ID = '8832ed6abbb2a83516461960c89af49d'; export const SPAN_ID = 'a673bc074b438374'; diff --git a/.github/workflows/integration-tests-workflow.yml b/.github/workflows/integration-tests-workflow.yml index 2ee8a85ecb..d1179a6e2d 100644 --- a/.github/workflows/integration-tests-workflow.yml +++ b/.github/workflows/integration-tests-workflow.yml @@ -109,6 +109,15 @@ jobs: node-version: ${{ steps.versions_step.outputs.node_version }} registry-url: 'https://registry.npmjs.org' + - name: Configure OpenSearch Dashboards + run: | + rm -rf ./config/opensearch_dashboards.yml + cat << 'EOT' > ./config/opensearch_dashboards.yml + server.host: "0.0.0.0" + home.disableWelcomeScreen: true + EOT + working-directory: OpenSearch-Dashboards + - name: Install correct yarn version for OpenSearch Dashboards run: | npm uninstall -g yarn diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f26802c597..22d20d68da 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -48,25 +48,32 @@ jobs: working-directory: OpenSearch-Dashboards/plugins/${{ env.PLUGIN_NAME }} run: yarn osd bootstrap - - name: Get list of changed files - id: files + - name: Get list of changed files using GitHub Action + uses: lots0logs/gh-action-get-changed-files@2.2.2 + with: + token: ${{ secrets.GITHUB_TOKEN }} + + - name: Check Changes of Files run: | - BASE_SHA="${{ github.event.pull_request.base.sha }}" - HEAD_SHA="${{ github.event.pull_request.head.sha }}" - git fetch origin $BASE_SHA - git diff --name-only $BASE_SHA...$HEAD_SHA > changed_files.txt - CHANGED_FILES=$(cat changed_files.txt | grep -E '\.(js|ts|tsx)$' || true) - echo "::set-output name=changed::${CHANGED_FILES}" - working-directory: OpenSearch-Dashboards/plugins/${{ env.PLUGIN_NAME }} + echo "FILES_MODIFIED=$(cat ${HOME}/files_modified.json)" + echo "FILES_ADDED=$(cat ${HOME}/files_added.json)" + echo "FILES_RENAMED=$(cat ${HOME}/files_renamed.json)" + echo "FILES_DELETED=$(cat ${HOME}/files_deleted.json)" - name: Lint Changed Files run: | - CHANGED_FILES="${{ steps.files.outputs.changed }}" + jq -r '.[]' ${HOME}/files_modified.json ${HOME}/files_added.json | sort | uniq > /tmp/changed_files.txt + CHANGED_FILES=$(cat /tmp/changed_files.txt) + echo "These are the changed files: $CHANGED_FILES" if [[ -n "$CHANGED_FILES" ]]; then echo "Linting changed files..." - IFS=$'\n' read -r -a FILES_TO_LINT <<< "$CHANGED_FILES" - yarn lint "${FILES_TO_LINT[@]}" + while IFS= read -r file; do + if [[ $file == *.js || $file == *.ts || $file == *.tsx ]]; then + echo "linting file $file" + yarn lint "$file" + fi + done < /tmp/changed_files.txt else echo "No matched files to lint." fi - working-directory: OpenSearch-Dashboards/plugins/${{ env.PLUGIN_NAME }} + working-directory: OpenSearch-Dashboards/plugins/${{ env.PLUGIN_NAME }} diff --git a/cypress.config.js b/cypress.config.js index dff98e5eb8..84ad089460 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -18,14 +18,12 @@ module.exports = defineConfig({ env: { opensearch: 'localhost:9200', opensearchDashboards: 'localhost:5601', - security_enabled: true, + security_enabled: false, }, 'cypress-watch-and-reload': { watch: ['common/**', 'public/**', 'server/**'], }, e2e: { - // We've imported your old cypress plugins here. - // You may want to clean this up later by importing these. setupNodeEvents(on, config) { return require('./.cypress/plugins/index.js')(on, config); }, From 6682b02f7fec81a451316a43751591288baae19a Mon Sep 17 00:00:00 2001 From: Simeon Widdis Date: Thu, 11 Jan 2024 11:00:44 -0800 Subject: [PATCH 2/2] Update snapshots for upstream changes (#1352) Signed-off-by: Simeon Widdis --- .../__snapshots__/create.test.tsx.snap | 78 +- .../__snapshots__/log_config.test.tsx.snap | 10 +- .../service_config.test.tsx.snap | 30 +- .../__snapshots__/trace_config.test.tsx.snap | 20 +- .../live_tail_button.test.tsx.snap | 10 +- .../__snapshots__/search.test.tsx.snap | 50 +- .../custom_panel_table.test.tsx.snap | 20 +- .../custom_panel_view.test.tsx.snap | 70 +- .../__snapshots__/empty_panel.test.tsx.snap | 10 +- .../visualization_container.test.tsx.snap | 10 +- .../visualization_flyout.test.tsx.snap | 40 +- .../connection_details.test.tsx.snap | 10 +- .../data_connection.test.tsx.snap | 36 +- ...data_connections_description.test.tsx.snap | 10 +- ...anage_data_connections_table.test.tsx.snap | 108 +- .../__snapshots__/no_access.test.tsx.snap | 10 +- .../__snapshots__/no_results.test.tsx.snap | 10 +- .../__snapshots__/flyout_button.test.tsx.snap | 10 +- .../json_code_block.test.tsx.snap | 10 +- .../patterns_header.test.tsx.snap | 26 +- .../patterns_table.test.tsx.snap | 50 +- .../__snapshots__/save_panel.test.tsx.snap | 20 +- .../__snapshots__/field.test.tsx.snap | 43 +- .../__snapshots__/sidebar.test.tsx.snap | 978 +++++++++++++----- .../timechart_header.test.tsx.snap | 10 +- .../__snapshots__/config_panel.test.tsx.snap | 120 ++- .../saved_query_table.test.tsx.snap | 70 +- .../added_integration.test.tsx.snap | 40 +- .../added_integration_flyout.test.tsx.snap | 80 +- .../added_integration_table.test.tsx.snap | 60 +- ...ilable_integration_card_view.test.tsx.snap | 30 +- ...lable_integration_table_view.test.tsx.snap | 60 +- .../integration_details.test.tsx.snap | 10 +- .../integration_fields.test.tsx.snap | 10 +- .../integration_header.test.tsx.snap | 10 +- .../setup_integration.test.tsx.snap | 62 +- .../__snapshots__/searchbar.test.tsx.snap | 10 +- .../__snapshots__/sidebar.test.tsx.snap | 30 +- .../metrics_export.test.tsx.snap | 10 +- .../metrics_export_panel.test.tsx.snap | 10 +- .../__snapshots__/top_menu.test.tsx.snap | 50 +- .../__snapshots__/empty_view.test.tsx.snap | 10 +- .../__snapshots__/note_table.test.tsx.snap | 36 +- .../__snapshots__/notebook.test.tsx.snap | 24 +- .../__snapshots__/para_input.test.tsx.snap | 30 +- .../__snapshots__/paragraphs.test.tsx.snap | 48 +- .../__snapshots__/search_bar.test.tsx.snap | 50 +- .../filter_edit_popover.test.tsx.snap | 20 +- .../__snapshots__/filters.test.tsx.snap | 10 +- .../__snapshots__/dashboard.test.tsx.snap | 10 +- .../dashboard_table.test.tsx.snap | 170 ++- .../latency_trend_cell.test.tsx.snap | 10 +- .../__snapshots__/mode_picker.test.tsx.snap | 36 +- .../top_error_rates_table.test.tsx.snap | 120 ++- .../top_latency_table.test.tsx.snap | 150 ++- .../__snapshots__/services.test.tsx.snap | 80 +- .../services_table.test.tsx.snap | 50 +- .../service_breakdown_panel.test.tsx.snap | 10 +- .../span_detail_flyout.test.tsx.snap | 40 +- .../__snapshots__/traces.test.tsx.snap | 60 +- .../__snapshots__/traces_table.test.tsx.snap | 70 +- .../__snapshots__/gauge.test.tsx.snap | 10 +- .../__snapshots__/metrics.test.tsx.snap | 10 +- .../__snapshots__/text.test.tsx.snap | 1 + 64 files changed, 2469 insertions(+), 927 deletions(-) diff --git a/public/components/application_analytics/__tests__/__snapshots__/create.test.tsx.snap b/public/components/application_analytics/__tests__/__snapshots__/create.test.tsx.snap index 375a076cd0..e7c2dbdedf 100644 --- a/public/components/application_analytics/__tests__/__snapshots__/create.test.tsx.snap +++ b/public/components/application_analytics/__tests__/__snapshots__/create.test.tsx.snap @@ -7417,7 +7417,11 @@ Object { viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + + > + + + > + + @@ -7910,7 +7922,11 @@ Object { viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -7991,7 +8007,11 @@ Object { viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + + > + + @@ -8522,7 +8546,11 @@ Object { viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + + > + + + > + + @@ -9015,7 +9051,11 @@ Object { viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -9096,7 +9136,11 @@ Object { viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + + > + + @@ -17802,7 +17850,11 @@ Object { viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
- - + > + + + - - + > + + + - - + > + + + @@ -1044,7 +1052,7 @@ exports[`Service Config component renders empty service config 1`] = ` size="m" type="search" > - - + > + + + diff --git a/public/components/application_analytics/__tests__/__snapshots__/trace_config.test.tsx.snap b/public/components/application_analytics/__tests__/__snapshots__/trace_config.test.tsx.snap index ca51495382..8b70a1a6a6 100644 --- a/public/components/application_analytics/__tests__/__snapshots__/trace_config.test.tsx.snap +++ b/public/components/application_analytics/__tests__/__snapshots__/trace_config.test.tsx.snap @@ -231,7 +231,7 @@ exports[`Trace Config component renders empty trace config 1`] = ` size="m" type="arrowRight" > - - + > + + + - - + > + + + diff --git a/public/components/common/live_tail/__tests__/__snapshots__/live_tail_button.test.tsx.snap b/public/components/common/live_tail/__tests__/__snapshots__/live_tail_button.test.tsx.snap index 3e8c7b716a..d16f1b4662 100644 --- a/public/components/common/live_tail/__tests__/__snapshots__/live_tail_button.test.tsx.snap +++ b/public/components/common/live_tail/__tests__/__snapshots__/live_tail_button.test.tsx.snap @@ -150,7 +150,7 @@ exports[`Live tail button starts live tail with 5s interval 1`] = ` size="m" type="stop" > - - + > + + + - - + > + + + - - + > + + + - - + > + + + @@ -746,7 +758,7 @@ exports[`Explorer Search component renders basic component 1`] = ` size="m" type="refresh" > - - + > + + + - - + > + + + - - + > + + + @@ -294,7 +298,7 @@ exports[`Panels Table Component renders empty panel table container 1`] = ` size="m" type="arrowDown" > - - + > + + + - - + > + + + - - + > + + + - - + > + + + - - + > + + + - - + > + + + @@ -3739,7 +3759,7 @@ exports[`Panels View Component renders panel view container without visualizatio size="m" type="refresh" > - - + > + + + - - + > + + + - - + > + + + - - + > + + +
diff --git a/public/components/custom_panels/panel_modules/visualization_flyout/__tests__/__snapshots__/visualization_flyout.test.tsx.snap b/public/components/custom_panels/panel_modules/visualization_flyout/__tests__/__snapshots__/visualization_flyout.test.tsx.snap index 0e37e1e4a2..c20ca8ae6a 100644 --- a/public/components/custom_panels/panel_modules/visualization_flyout/__tests__/__snapshots__/visualization_flyout.test.tsx.snap +++ b/public/components/custom_panels/panel_modules/visualization_flyout/__tests__/__snapshots__/visualization_flyout.test.tsx.snap @@ -133,7 +133,11 @@ exports[`Visualization Flyout Component renders add visualization Flyout 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
+ > + +
+ > + +
+ > + +
+ > + +
- - + > + + + diff --git a/public/components/datasources/components/__tests__/__snapshots__/connection_details.test.tsx.snap b/public/components/datasources/components/__tests__/__snapshots__/connection_details.test.tsx.snap index 6fb23b7abb..5b35615a54 100644 --- a/public/components/datasources/components/__tests__/__snapshots__/connection_details.test.tsx.snap +++ b/public/components/datasources/components/__tests__/__snapshots__/connection_details.test.tsx.snap @@ -298,7 +298,7 @@ exports[`Connection Details test Renders connection details for s3 datasource 1` size="m" type="iInCircle" > - - + > + + + + > + + + > + +
+ > + + @@ -603,7 +615,11 @@ exports[`Data Connection Page test Renders S3 data connection page with data 1`] viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
+ > + +
+ > + +
- - + > + + + + > + +
@@ -150,7 +154,11 @@ exports[`Manage Data Connections Table test Renders manage data connections tabl viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -199,7 +207,11 @@ exports[`Manage Data Connections Table test Renders manage data connections tabl viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
@@ -329,7 +341,11 @@ exports[`Manage Data Connections Table test Renders manage data connections tabl viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + + > + + + > + +
@@ -453,7 +477,11 @@ exports[`Manage Data Connections Table test Renders manage data connections tabl viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + + > + + + > + + @@ -577,7 +613,11 @@ exports[`Manage Data Connections Table test Renders manage data connections tabl viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + + > + + + > + + @@ -701,7 +749,11 @@ exports[`Manage Data Connections Table test Renders manage data connections tabl viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + + > + + + > + + @@ -805,7 +865,11 @@ exports[`Manage Data Connections Table test Renders manage data connections tabl viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -840,7 +904,11 @@ exports[`Manage Data Connections Table test Renders manage data connections tabl viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    + > + + diff --git a/public/components/datasources/components/__tests__/__snapshots__/no_access.test.tsx.snap b/public/components/datasources/components/__tests__/__snapshots__/no_access.test.tsx.snap index a4b27f4544..5fd77b87ba 100644 --- a/public/components/datasources/components/__tests__/__snapshots__/no_access.test.tsx.snap +++ b/public/components/datasources/components/__tests__/__snapshots__/no_access.test.tsx.snap @@ -36,7 +36,7 @@ exports[`No access test Renders no access view of data source 1`] = ` size="xxl" type="alert" > - - + > + + + - - + > + + + - - + > + + + diff --git a/public/components/event_analytics/explorer/events_views/json_code_block/__tests__/__snapshots__/json_code_block.test.tsx.snap b/public/components/event_analytics/explorer/events_views/json_code_block/__tests__/__snapshots__/json_code_block.test.tsx.snap index b318643346..e45c3c4272 100644 --- a/public/components/event_analytics/explorer/events_views/json_code_block/__tests__/__snapshots__/json_code_block.test.tsx.snap +++ b/public/components/event_analytics/explorer/events_views/json_code_block/__tests__/__snapshots__/json_code_block.test.tsx.snap @@ -173,7 +173,7 @@ exports[`Doc viewer JSON block component Renders JSON block component 1`] = ` size="m" type="copy" > - - + > + + + diff --git a/public/components/event_analytics/explorer/log_patterns/__tests__/__snapshots__/patterns_header.test.tsx.snap b/public/components/event_analytics/explorer/log_patterns/__tests__/__snapshots__/patterns_header.test.tsx.snap index 8777405139..681b600aed 100644 --- a/public/components/event_analytics/explorer/log_patterns/__tests__/__snapshots__/patterns_header.test.tsx.snap +++ b/public/components/event_analytics/explorer/log_patterns/__tests__/__snapshots__/patterns_header.test.tsx.snap @@ -101,7 +101,7 @@ exports[`Patterns header component Renders header of log patterns 1`] = ` size="m" type="gear" > - - + > + + + @@ -223,7 +227,11 @@ exports[`Patterns header component Renders header of log patterns 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -587,7 +595,7 @@ exports[`Patterns header component Renders header of log patterns 1`] = ` size="s" type="popout" > - - + > + + + - - + > + + + - - + > + + + @@ -1011,7 +1019,7 @@ exports[`Pattern table component Renders pattern table 1`] = ` size="s" type="arrowDown" > - - + > + + + - - + > + + + @@ -1250,7 +1266,7 @@ exports[`Pattern table component Renders pattern table 1`] = ` size="m" type="arrowRight" > - - + > + + + diff --git a/public/components/event_analytics/explorer/save_panel/__tests__/__snapshots__/save_panel.test.tsx.snap b/public/components/event_analytics/explorer/save_panel/__tests__/__snapshots__/save_panel.test.tsx.snap index f6f024c453..b94a45bd65 100644 --- a/public/components/event_analytics/explorer/save_panel/__tests__/__snapshots__/save_panel.test.tsx.snap +++ b/public/components/event_analytics/explorer/save_panel/__tests__/__snapshots__/save_panel.test.tsx.snap @@ -390,7 +390,7 @@ exports[`Saved query table component Renders saved query table 1`] = ` className="euiFormControlLayoutClearButton__icon" type="cross" > - - + > + + + @@ -434,7 +438,7 @@ exports[`Saved query table component Renders saved query table 1`] = ` size="m" type="arrowDown" > - - + > + + + diff --git a/public/components/event_analytics/explorer/sidebar/__tests__/__snapshots__/field.test.tsx.snap b/public/components/event_analytics/explorer/sidebar/__tests__/__snapshots__/field.test.tsx.snap index acf3d81679..0c780860f0 100644 --- a/public/components/event_analytics/explorer/sidebar/__tests__/__snapshots__/field.test.tsx.snap +++ b/public/components/event_analytics/explorer/sidebar/__tests__/__snapshots__/field.test.tsx.snap @@ -64,7 +64,7 @@ exports[`Field component Renders a sidebar field 1`] = ` title="string" type="tokenString" > - - + > + + string + + + + @@ -152,7 +159,7 @@ exports[`Field component Renders a sidebar field 1`] = ` size="m" type="inputOutput" > - - + > + + + @@ -260,7 +271,7 @@ exports[`Field component Renders a sidebar field 1`] = ` size="m" type="inspect" > - - + > + + + @@ -329,7 +344,7 @@ exports[`Field component Renders a sidebar field 1`] = ` size="m" type="cross" > - - + > + + + diff --git a/public/components/event_analytics/explorer/sidebar/__tests__/__snapshots__/sidebar.test.tsx.snap b/public/components/event_analytics/explorer/sidebar/__tests__/__snapshots__/sidebar.test.tsx.snap index 102994f08e..59d4966c25 100644 --- a/public/components/event_analytics/explorer/sidebar/__tests__/__snapshots__/sidebar.test.tsx.snap +++ b/public/components/event_analytics/explorer/sidebar/__tests__/__snapshots__/sidebar.test.tsx.snap @@ -253,7 +253,7 @@ exports[`Siderbar component Renders empty sidebar component 1`] = ` size="s" type="search" > - - + > + + + @@ -1190,7 +1194,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="long" type="tokenString" > - - + > + + long + + + + @@ -1330,7 +1341,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -1398,7 +1413,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="cross" > - - + > + + + @@ -1577,7 +1596,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="text" type="tokenString" > - - + > + + text + + + + @@ -1717,7 +1743,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -1785,7 +1815,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="cross" > - - + > + + + @@ -1964,7 +1998,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="integer" type="tokenString" > - - + > + + integer + + + + @@ -2104,7 +2145,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -2172,7 +2217,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="cross" > - - + > + + + @@ -2351,7 +2400,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="long" type="tokenString" > - - + > + + long + + + + @@ -2491,7 +2547,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -2559,7 +2619,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="cross" > - - + > + + + @@ -2738,7 +2802,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="text" type="tokenString" > - - + > + + text + + + + @@ -2878,7 +2949,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -2946,7 +3021,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="cross" > - - + > + + + @@ -3125,7 +3204,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="long" type="tokenString" > - - + > + + long + + + + @@ -3265,7 +3351,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -3333,7 +3423,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="cross" > - - + > + + + @@ -3670,7 +3764,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="string" type="tokenString" > - - + > + + string + + + + @@ -3758,7 +3859,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inputOutput" > - - + > + + + @@ -3866,7 +3971,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -3935,7 +4044,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -4114,7 +4227,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="long" type="tokenString" > - - + > + + long + + + + @@ -4254,7 +4374,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -4323,7 +4447,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -4502,7 +4630,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="ip" type="tokenIP" > - - + > + + ip + + + + @@ -4642,7 +4777,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -4711,7 +4850,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -4890,7 +5033,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="struct" type="tokenString" > - - + > + + struct + + + + @@ -5030,7 +5180,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -5099,7 +5253,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -5278,7 +5436,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="string" type="tokenString" > - - + > + + string + + + + @@ -5366,7 +5531,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inputOutput" > - - + > + + + @@ -5474,7 +5643,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -5543,7 +5716,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -5722,7 +5899,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="struct" type="tokenString" > - - + > + + struct + + + + @@ -5862,7 +6046,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -5931,7 +6119,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -6110,7 +6302,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="string" type="tokenString" > - - + > + + string + + + + @@ -6198,7 +6397,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inputOutput" > - - + > + + + @@ -6306,7 +6509,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -6375,7 +6582,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -6554,7 +6765,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="string" type="tokenString" > - - + > + + string + + + + @@ -6642,7 +6860,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inputOutput" > - - + > + + + @@ -6750,7 +6972,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -6819,7 +7045,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -6998,7 +7228,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="ip" type="tokenIP" > - - + > + + ip + + + + @@ -7138,7 +7375,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -7207,7 +7448,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -7386,7 +7631,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="struct" type="tokenString" > - - + > + + struct + + + + @@ -7526,7 +7778,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -7595,7 +7851,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -7774,7 +8034,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="double" type="tokenString" > - - + > + + double + + + + @@ -7914,7 +8181,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -7983,7 +8254,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -8162,7 +8437,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="string" type="tokenString" > - - + > + + string + + + + @@ -8250,7 +8532,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inputOutput" > - - + > + + + @@ -8358,7 +8644,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -8427,7 +8717,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -8606,7 +8900,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="long" type="tokenString" > - - + > + + long + + + + @@ -8746,7 +9047,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -8815,7 +9120,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -8994,7 +9303,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="string" type="tokenString" > - - + > + + string + + + + @@ -9082,7 +9398,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inputOutput" > - - + > + + + @@ -9190,7 +9510,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -9259,7 +9583,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -9438,7 +9766,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="string" type="tokenString" > - - + > + + string + + + + @@ -9526,7 +9861,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inputOutput" > - - + > + + + @@ -9634,7 +9973,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -9703,7 +10046,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -9882,7 +10229,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="string" type="tokenString" > - - + > + + string + + + + @@ -9970,7 +10324,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inputOutput" > - - + > + + + @@ -10078,7 +10436,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -10147,7 +10509,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -10326,7 +10692,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="string" type="tokenString" > - - + > + + string + + + + @@ -10414,7 +10787,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inputOutput" > - - + > + + + @@ -10522,7 +10899,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -10591,7 +10972,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -10770,7 +11155,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="date" type="tokenDate" > - - + > + + date + + + + @@ -10951,7 +11343,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -11020,7 +11416,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -11199,7 +11599,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="string" type="tokenString" > - - + > + + string + + + + @@ -11287,7 +11694,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inputOutput" > - - + > + + + @@ -11395,7 +11806,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -11464,7 +11879,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + @@ -11643,7 +12062,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` title="date" type="tokenDate" > - - + > + + date + + + + @@ -11744,7 +12170,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inputOutput" > - - + > + + + @@ -11839,7 +12269,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="inspect" > - - + > + + + @@ -11908,7 +12342,7 @@ exports[`Siderbar component Renders sidebar component 1`] = ` size="m" type="plusInCircleFilled" > - - + > + + + diff --git a/public/components/event_analytics/explorer/timechart_header/__tests__/__snapshots__/timechart_header.test.tsx.snap b/public/components/event_analytics/explorer/timechart_header/__tests__/__snapshots__/timechart_header.test.tsx.snap index de94c5f728..92c7549d7f 100644 --- a/public/components/event_analytics/explorer/timechart_header/__tests__/__snapshots__/timechart_header.test.tsx.snap +++ b/public/components/event_analytics/explorer/timechart_header/__tests__/__snapshots__/timechart_header.test.tsx.snap @@ -300,7 +300,7 @@ exports[`Time chart header component Renders Time chart header component 1`] = ` size="s" type="arrowDown" > - - + > + + + diff --git a/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap b/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap index a223888b9b..951ef271ea 100644 --- a/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap +++ b/public/components/event_analytics/explorer/visualizations/config_panel/__tests__/__snapshots__/config_panel.test.tsx.snap @@ -4312,7 +4312,7 @@ exports[`Config panel component Renders config panel with visualization data 1`] size="s" type="visBarVerticalStacked" > - - + > + + + @@ -4433,7 +4437,7 @@ exports[`Config panel component Renders config panel with visualization data 1`] size="m" type="arrowDown" > - - + > + + + @@ -8054,7 +8062,7 @@ exports[`Config panel component Renders config panel with visualization data 1`] size="m" type="arrowRight" > - - + > + + + - - + > + + + - - + > + + + - - + > + + + - - + > + + + @@ -13430,7 +13458,7 @@ exports[`Config panel component Renders config panel with visualization data 1`] size="m" type="iInCircle" > - - + > + + + @@ -13671,7 +13703,7 @@ exports[`Config panel component Renders config panel with visualization data 1`] size="m" type="iInCircle" > - - + > + + + @@ -13912,7 +13948,7 @@ exports[`Config panel component Renders config panel with visualization data 1`] size="m" type="iInCircle" > - - + > + + + @@ -14153,7 +14193,7 @@ exports[`Config panel component Renders config panel with visualization data 1`] size="m" type="iInCircle" > - - + > + + + @@ -15075,7 +15119,7 @@ exports[`Config panel component Renders config panel with visualization data 1`] size="m" type="arrowRight" > - - + > + + + - - + > + + + @@ -507,7 +511,7 @@ exports[`Saved query table component Renders saved query table 1`] = ` size="m" type="arrowDown" > - - + > + + + - - + > + + + @@ -1225,7 +1237,7 @@ exports[`Saved query table component Renders saved query table 1`] = ` size="m" type="visBarVerticalStacked" > - - + > + + + @@ -1464,7 +1480,7 @@ exports[`Saved query table component Renders saved query table 1`] = ` size="s" type="arrowDown" > - - + > + + + - - + > + + + @@ -1703,7 +1727,7 @@ exports[`Saved query table component Renders saved query table 1`] = ` size="m" type="arrowRight" > - - + > + + + diff --git a/public/components/integrations/components/__tests__/__snapshots__/added_integration.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/added_integration.test.tsx.snap index 7ef7eb7859..4f499e10ed 100644 --- a/public/components/integrations/components/__tests__/__snapshots__/added_integration.test.tsx.snap +++ b/public/components/integrations/components/__tests__/__snapshots__/added_integration.test.tsx.snap @@ -176,7 +176,7 @@ exports[`Added Integration View Test Renders added integration view using dummy color="danger" type="dot" > - - + > + + + @@ -243,7 +247,7 @@ exports[`Added Integration View Test Renders added integration view using dummy size="m" type="trash" > - - + > + + + @@ -572,7 +580,7 @@ exports[`Added Integration View Test Renders added integration view using dummy size="m" type="search" > - - + > + + + @@ -796,7 +808,7 @@ exports[`Added Integration View Test Renders added integration view using dummy size="m" type="arrowDown" > - - + > + + + + > + +
    + > + + @@ -389,7 +397,11 @@ exports[`Add Integration Flyout Test Renders add integration flyout with dummy i viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    + > + + @@ -648,7 +664,11 @@ exports[`Add Integration Flyout Test Renders add integration flyout with dummy i viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    + > + + @@ -907,7 +931,11 @@ exports[`Add Integration Flyout Test Renders add integration flyout with dummy i viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    + > + + @@ -1154,7 +1186,11 @@ exports[`Add Integration Flyout Test Renders add integration flyout with dummy i viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    + > + + @@ -1437,7 +1477,7 @@ exports[`Add Integration Flyout Test Renders add integration flyout with dummy i size="m" type="cross" > - - + > + + + @@ -1569,7 +1613,7 @@ exports[`Add Integration Flyout Test Renders add integration flyout with dummy i size="s" type="popout" > - - + > + + + - - + > + + + @@ -487,7 +491,7 @@ exports[`Added Integration Table View Test Renders added integration table view size="m" type="arrowDown" > - - + > + + + - - + > + + +
    @@ -1191,7 +1203,7 @@ exports[`Added Integration Table View Test Renders added integration table view size="s" type="arrowDown" > - - + > + + + - - + > + + + @@ -1430,7 +1450,7 @@ exports[`Added Integration Table View Test Renders added integration table view size="m" type="arrowRight" > - - + > + + + diff --git a/public/components/integrations/components/__tests__/__snapshots__/available_integration_card_view.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/available_integration_card_view.test.tsx.snap index 9f6372b915..6f47d925a0 100644 --- a/public/components/integrations/components/__tests__/__snapshots__/available_integration_card_view.test.tsx.snap +++ b/public/components/integrations/components/__tests__/__snapshots__/available_integration_card_view.test.tsx.snap @@ -125,7 +125,7 @@ exports[`Available Integration Card View Test Renders nginx integration card vie size="m" type="search" > - - + > + + + @@ -269,7 +273,7 @@ exports[`Available Integration Card View Test Renders nginx integration card vie size="m" type="list" > - - + > + + + - - + > + + + - - + > + + + @@ -471,7 +475,7 @@ exports[`Available Integration Table View Test Renders nginx integration table v size="m" type="list" > - - + > + + + - - + > + + + - - + > + + + - - + > + + + @@ -1446,7 +1466,7 @@ exports[`Available Integration Table View Test Renders nginx integration table v size="m" type="arrowRight" > - - + > + + + diff --git a/public/components/integrations/components/__tests__/__snapshots__/integration_details.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/integration_details.test.tsx.snap index 5274b335b7..18d1867951 100644 --- a/public/components/integrations/components/__tests__/__snapshots__/integration_details.test.tsx.snap +++ b/public/components/integrations/components/__tests__/__snapshots__/integration_details.test.tsx.snap @@ -120,7 +120,7 @@ exports[`Available Integration Table View Test Renders nginx integration table v size="s" type="popout" > - - + > + + + diff --git a/public/components/integrations/components/__tests__/__snapshots__/integration_fields.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/integration_fields.test.tsx.snap index 77fb9d7a07..9617512f0f 100644 --- a/public/components/integrations/components/__tests__/__snapshots__/integration_fields.test.tsx.snap +++ b/public/components/integrations/components/__tests__/__snapshots__/integration_fields.test.tsx.snap @@ -160,7 +160,7 @@ exports[`Available Integration Table View Test Renders nginx integration table v size="m" type="search" > - - + > + + + diff --git a/public/components/integrations/components/__tests__/__snapshots__/integration_header.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/integration_header.test.tsx.snap index 9aa43c4964..41591c2408 100644 --- a/public/components/integrations/components/__tests__/__snapshots__/integration_header.test.tsx.snap +++ b/public/components/integrations/components/__tests__/__snapshots__/integration_header.test.tsx.snap @@ -67,7 +67,7 @@ exports[`Integration Header Test Renders integration header as expected 1`] = ` size="s" type="popout" > - - + > + + + diff --git a/public/components/integrations/components/__tests__/__snapshots__/setup_integration.test.tsx.snap b/public/components/integrations/components/__tests__/__snapshots__/setup_integration.test.tsx.snap index ac06da656e..8f555a0d9b 100644 --- a/public/components/integrations/components/__tests__/__snapshots__/setup_integration.test.tsx.snap +++ b/public/components/integrations/components/__tests__/__snapshots__/setup_integration.test.tsx.snap @@ -288,7 +288,7 @@ exports[`Integration Setup Page Renders integration setup page as expected 1`] = size="m" type="arrowDown" > - - + > + + + @@ -590,7 +594,7 @@ exports[`Integration Setup Page Renders integration setup page as expected 1`] = className="euiFormControlLayoutClearButton__icon" type="cross" > - - + > + + + @@ -641,7 +649,7 @@ exports[`Integration Setup Page Renders integration setup page as expected 1`] = size="m" type="arrowDown" > - - + > + + + @@ -751,7 +763,11 @@ exports[`Integration Setup Page Renders integration setup page as expected 1`] = viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -781,7 +797,11 @@ exports[`Integration Setup Page Renders integration setup page as expected 1`] = viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -868,7 +888,7 @@ exports[`Integration Setup Page Renders integration setup page as expected 1`] = size="m" type="cross" > - - + > + + + - - + > + + + - - + > + + + diff --git a/public/components/metrics/sidebar/__tests__/__snapshots__/sidebar.test.tsx.snap b/public/components/metrics/sidebar/__tests__/__snapshots__/sidebar.test.tsx.snap index 898fc9dfd0..a22e4729ce 100644 --- a/public/components/metrics/sidebar/__tests__/__snapshots__/sidebar.test.tsx.snap +++ b/public/components/metrics/sidebar/__tests__/__snapshots__/sidebar.test.tsx.snap @@ -198,7 +198,7 @@ exports[`Side Bar Component renders Side Bar Component 1`] = ` size="m" type="search" > - - + > + + + @@ -293,7 +297,7 @@ exports[`Side Bar Component renders Side Bar Component 1`] = ` size="m" type="arrowRight" > - - + > + + + - - + > + + + - - + > + + + - - + > + + + diff --git a/public/components/metrics/top_menu/__tests__/__snapshots__/top_menu.test.tsx.snap b/public/components/metrics/top_menu/__tests__/__snapshots__/top_menu.test.tsx.snap index cb3497bdcf..9c64eae1cd 100644 --- a/public/components/metrics/top_menu/__tests__/__snapshots__/top_menu.test.tsx.snap +++ b/public/components/metrics/top_menu/__tests__/__snapshots__/top_menu.test.tsx.snap @@ -253,7 +253,7 @@ exports[`Metrics Top Menu Component renders Top Menu Component when enabled 1`] size="m" type="arrowDown" > - - + > + + + @@ -563,7 +567,7 @@ exports[`Metrics Top Menu Component renders Top Menu Component when enabled 1`] size="s" type="arrowDown" > - - + > + + + - - + > + + + @@ -753,7 +765,7 @@ exports[`Metrics Top Menu Component renders Top Menu Component when enabled 1`] size="m" type="refresh" > - - + > + + + - - + > + + + - - + > + + + spec renders the component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    @@ -358,7 +362,11 @@ exports[` spec renders the component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    @@ -841,7 +849,11 @@ exports[` spec renders the component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
      spec renders the component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    @@ -973,7 +989,11 @@ exports[` spec renders the empty component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    @@ -1009,7 +1029,11 @@ exports[` spec renders the empty component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + diff --git a/public/components/notebooks/components/__tests__/__snapshots__/notebook.test.tsx.snap b/public/components/notebooks/components/__tests__/__snapshots__/notebook.test.tsx.snap index b2bc5ba057..a55b86bc52 100644 --- a/public/components/notebooks/components/__tests__/__snapshots__/notebook.test.tsx.snap +++ b/public/components/notebooks/components/__tests__/__snapshots__/notebook.test.tsx.snap @@ -48,7 +48,11 @@ exports[` spec Renders the empty component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -129,7 +133,11 @@ exports[` spec Renders the empty component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -224,7 +232,11 @@ exports[` spec Renders the empty component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    spec Renders the empty component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    spec renders the markdown component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    @@ -137,7 +141,11 @@ exports[` spec renders the visualization component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -238,7 +250,11 @@ exports[` spec renders the visualization component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -251,7 +267,11 @@ exports[` spec renders the visualization component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    diff --git a/public/components/notebooks/components/paragraph_components/__tests__/__snapshots__/paragraphs.test.tsx.snap b/public/components/notebooks/components/paragraph_components/__tests__/__snapshots__/paragraphs.test.tsx.snap index c28f96d28d..df055e89ca 100644 --- a/public/components/notebooks/components/paragraph_components/__tests__/__snapshots__/paragraphs.test.tsx.snap +++ b/public/components/notebooks/components/paragraph_components/__tests__/__snapshots__/paragraphs.test.tsx.snap @@ -29,7 +29,11 @@ exports[` spec renders the component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -56,7 +60,11 @@ exports[` spec renders the component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -119,7 +127,11 @@ exports[` spec renders the component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -150,7 +162,11 @@ exports[` spec renders the component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + spec renders the component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -187,7 +207,11 @@ exports[` spec renders the component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + spec renders the component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + + @@ -249,7 +277,11 @@ exports[` spec renders the component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    - - + > + + + - - + > + + + @@ -451,7 +459,7 @@ exports[`Search bar components renders search bar 1`] = ` size="m" type="search" > - - + > + + + @@ -931,7 +943,7 @@ exports[`Search bar components renders search bar 1`] = ` size="m" type="refresh" > - - + > + + + - - + > + + + diff --git a/public/components/trace_analytics/components/common/filters/__tests__/__snapshots__/filter_edit_popover.test.tsx.snap b/public/components/trace_analytics/components/common/filters/__tests__/__snapshots__/filter_edit_popover.test.tsx.snap index 7fde9a70a6..8dc64c168d 100644 --- a/public/components/trace_analytics/components/common/filters/__tests__/__snapshots__/filter_edit_popover.test.tsx.snap +++ b/public/components/trace_analytics/components/common/filters/__tests__/__snapshots__/filter_edit_popover.test.tsx.snap @@ -290,7 +290,7 @@ exports[`Filter popover component renders filter popover 1`] = ` size="m" type="arrowDown" > - - + > + + + @@ -554,7 +558,7 @@ exports[`Filter popover component renders filter popover 1`] = ` size="m" type="arrowDown" > - - + > + + + diff --git a/public/components/trace_analytics/components/common/filters/__tests__/__snapshots__/filters.test.tsx.snap b/public/components/trace_analytics/components/common/filters/__tests__/__snapshots__/filters.test.tsx.snap index 3d483d4dd2..e886fa6400 100644 --- a/public/components/trace_analytics/components/common/filters/__tests__/__snapshots__/filters.test.tsx.snap +++ b/public/components/trace_analytics/components/common/filters/__tests__/__snapshots__/filters.test.tsx.snap @@ -80,7 +80,7 @@ exports[`Filter component renders filters 1`] = ` size="m" type="filter" > - - + > + + + diff --git a/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/dashboard.test.tsx.snap b/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/dashboard.test.tsx.snap index f828066af8..1fff402475 100644 --- a/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/dashboard.test.tsx.snap +++ b/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/dashboard.test.tsx.snap @@ -1405,7 +1405,7 @@ exports[`Dashboard component renders empty dashboard 1`] = ` size="m" type="arrowDown" > - - + > + + + - - + > + + + - - + > + + +
    @@ -1241,7 +1249,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="s" type="questionInCircle" > - - + > + + + @@ -1291,7 +1303,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="m" type="sortDown" > - - + > + + + @@ -1391,7 +1407,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -1489,7 +1509,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -1597,7 +1621,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -1706,7 +1734,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -1828,7 +1860,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -1959,7 +1995,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="s" type="questionInCircle" > - - + > + + + @@ -2397,7 +2437,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -2506,7 +2550,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -2615,7 +2663,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -2734,7 +2786,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -2916,7 +2972,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="s" type="arrowDown" > - - + > + + + - - + > + + + @@ -3155,7 +3219,7 @@ exports[`Dashboard table component renders dashboard table 1`] = ` size="m" type="arrowRight" > - - + > + + + diff --git a/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/latency_trend_cell.test.tsx.snap b/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/latency_trend_cell.test.tsx.snap index 4b415df6f9..6c4844fa12 100644 --- a/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/latency_trend_cell.test.tsx.snap +++ b/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/latency_trend_cell.test.tsx.snap @@ -142,7 +142,7 @@ exports[`Latency trend cell component renders latency trend cell 1`] = ` size="m" type="magnifyWithPlus" > - - + > + + + diff --git a/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/mode_picker.test.tsx.snap b/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/mode_picker.test.tsx.snap index 469f17277f..95690a4bae 100644 --- a/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/mode_picker.test.tsx.snap +++ b/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/mode_picker.test.tsx.snap @@ -86,7 +86,7 @@ exports[`Mode picker component renders mode picker 1`] = ` size="m" type="arrowDown" > - - + > + + + - - + > + + + + > + +
    @@ -674,7 +686,7 @@ exports[`Mode picker component renders mode picker 2`] = ` size="s" type="search" > - - + > + + +
    diff --git a/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/top_error_rates_table.test.tsx.snap b/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/top_error_rates_table.test.tsx.snap index 71733fa84d..dee301c004 100644 --- a/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/top_error_rates_table.test.tsx.snap +++ b/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/top_error_rates_table.test.tsx.snap @@ -805,7 +805,7 @@ exports[`Error Rates Table component renders top error rates table with data 1`] size="s" type="arrowDown" > - - + > + + + - - + > + + +
    @@ -1056,7 +1064,7 @@ exports[`Error Rates Table component renders top error rates table with data 1`] size="s" type="questionInCircle" > - - + > + + +
    @@ -1154,7 +1166,7 @@ exports[`Error Rates Table component renders top error rates table with data 1`] size="s" type="questionInCircle" > - - + > + + +
    @@ -1262,7 +1278,7 @@ exports[`Error Rates Table component renders top error rates table with data 1`] size="s" type="questionInCircle" > - - + > + + +
    @@ -1384,7 +1404,7 @@ exports[`Error Rates Table component renders top error rates table with data 1`] size="s" type="questionInCircle" > - - + > + + +
    @@ -1508,7 +1532,7 @@ exports[`Error Rates Table component renders top error rates table with data 1`] size="s" type="questionInCircle" > - - + > + + +
    @@ -1617,7 +1645,7 @@ exports[`Error Rates Table component renders top error rates table with data 1`] size="s" type="questionInCircle" > - - + > + + +
    @@ -1736,7 +1768,7 @@ exports[`Error Rates Table component renders top error rates table with data 1`] size="s" type="questionInCircle" > - - + > + + +
    @@ -1914,7 +1950,7 @@ exports[`Error Rates Table component renders top error rates table with data 1`] size="s" type="arrowDown" > - - + > + + + - - + > + + + @@ -2153,7 +2197,7 @@ exports[`Error Rates Table component renders top error rates table with data 1`] size="m" type="arrowRight" > - - + > + + + diff --git a/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/top_latency_table.test.tsx.snap b/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/top_latency_table.test.tsx.snap index d0279c1869..edcc7059d9 100644 --- a/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/top_latency_table.test.tsx.snap +++ b/public/components/trace_analytics/components/dashboard/__tests__/__snapshots__/top_latency_table.test.tsx.snap @@ -1164,7 +1164,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="s" type="arrowDown" > - - + > + + + - - + > + + +
    @@ -1421,7 +1429,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="s" type="questionInCircle" > - - + > + + + @@ -1471,7 +1483,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="m" type="sortDown" > - - + > + + + @@ -1571,7 +1587,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -1680,7 +1700,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -1789,7 +1813,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -1911,7 +1939,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -2042,7 +2074,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="s" type="questionInCircle" > - - + > + + + @@ -2480,7 +2516,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -2589,7 +2629,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -2708,7 +2752,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="s" type="questionInCircle" > - - + > + + +
    @@ -2886,7 +2934,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="s" type="arrowDown" > - - + > + + + - - + > + + + @@ -3125,7 +3181,7 @@ exports[`Latency Table component renders top error rates table with data 1`] = ` size="m" type="arrowRight" > - - + > + + + diff --git a/public/components/trace_analytics/components/services/__tests__/__snapshots__/services.test.tsx.snap b/public/components/trace_analytics/components/services/__tests__/__snapshots__/services.test.tsx.snap index 042830c076..b4e2ead80a 100644 --- a/public/components/trace_analytics/components/services/__tests__/__snapshots__/services.test.tsx.snap +++ b/public/components/trace_analytics/components/services/__tests__/__snapshots__/services.test.tsx.snap @@ -282,7 +282,7 @@ exports[`Services component renders empty services page 1`] = ` size="m" type="arrowDown" > - - + > + + + - - + > + + + @@ -922,7 +930,7 @@ exports[`Services component renders empty services page 1`] = ` size="s" type="arrowDown" > - - + > + + + - - + > + + + @@ -1076,7 +1092,7 @@ exports[`Services component renders empty services page 1`] = ` size="m" type="refresh" > - - + > + + + - - + > + + + @@ -1875,7 +1899,7 @@ exports[`Services component renders empty services page 1`] = ` size="m" type="search" > - - + > + + + @@ -2042,7 +2070,7 @@ exports[`Services component renders empty services page 1`] = ` size="m" type="arrowRight" > - - + > + + + - - + > + + + - - + > + + + @@ -3065,7 +3073,7 @@ exports[`Services table component renders services table 1`] = ` size="s" type="arrowDown" > - - + > + + + - - + > + + + @@ -3304,7 +3320,7 @@ exports[`Services table component renders services table 1`] = ` size="m" type="arrowRight" > - - + > + + + diff --git a/public/components/trace_analytics/components/traces/__tests__/__snapshots__/service_breakdown_panel.test.tsx.snap b/public/components/trace_analytics/components/traces/__tests__/__snapshots__/service_breakdown_panel.test.tsx.snap index db4ecbdadf..9024b9fa83 100644 --- a/public/components/trace_analytics/components/traces/__tests__/__snapshots__/service_breakdown_panel.test.tsx.snap +++ b/public/components/trace_analytics/components/traces/__tests__/__snapshots__/service_breakdown_panel.test.tsx.snap @@ -318,7 +318,7 @@ exports[`Service breakdown panel component renders service breakdown panel 1`] = color="#7492e7" type="dot" > - - + > + + +
    diff --git a/public/components/trace_analytics/components/traces/__tests__/__snapshots__/span_detail_flyout.test.tsx.snap b/public/components/trace_analytics/components/traces/__tests__/__snapshots__/span_detail_flyout.test.tsx.snap index e4eb22e85d..4f5a9b424e 100644 --- a/public/components/trace_analytics/components/traces/__tests__/__snapshots__/span_detail_flyout.test.tsx.snap +++ b/public/components/trace_analytics/components/traces/__tests__/__snapshots__/span_detail_flyout.test.tsx.snap @@ -60,7 +60,11 @@ exports[` spec renders the empty component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    spec renders the empty component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    spec renders the empty component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    spec renders the empty component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    spec renders the empty component 1`] = ` viewBox="0 0 16 16" width="16" xmlns="http://www.w3.org/2000/svg" - /> + > + +
    spec renders the empty component 1`] = ` size="m" type="cross" > - spec renders the empty component 1`] = ` viewBox="0 0 16 16" width={16} xmlns="http://www.w3.org/2000/svg" - /> - + > + + + diff --git a/public/components/trace_analytics/components/traces/__tests__/__snapshots__/traces.test.tsx.snap b/public/components/trace_analytics/components/traces/__tests__/__snapshots__/traces.test.tsx.snap index 1be451ac0a..eb5619545b 100644 --- a/public/components/trace_analytics/components/traces/__tests__/__snapshots__/traces.test.tsx.snap +++ b/public/components/trace_analytics/components/traces/__tests__/__snapshots__/traces.test.tsx.snap @@ -281,7 +281,7 @@ exports[`Traces component renders empty traces page 1`] = ` size="m" type="arrowDown" > - - + > + + + - - + > + + + @@ -920,7 +928,7 @@ exports[`Traces component renders empty traces page 1`] = ` size="s" type="arrowDown" > - - + > + + + - - + > + + + @@ -1074,7 +1090,7 @@ exports[`Traces component renders empty traces page 1`] = ` size="m" type="refresh" > - - + > + + + - - + > + + + diff --git a/public/components/trace_analytics/components/traces/__tests__/__snapshots__/traces_table.test.tsx.snap b/public/components/trace_analytics/components/traces/__tests__/__snapshots__/traces_table.test.tsx.snap index 43f7391229..0662d5db1e 100644 --- a/public/components/trace_analytics/components/traces/__tests__/__snapshots__/traces_table.test.tsx.snap +++ b/public/components/trace_analytics/components/traces/__tests__/__snapshots__/traces_table.test.tsx.snap @@ -187,7 +187,7 @@ exports[`Traces table component renders empty traces table message 1`] = ` size="m" type="popout" > - - + > + + + - - + > + + + - - + > + + + @@ -2719,7 +2731,7 @@ exports[`Traces table component renders traces table 1`] = ` size="m" type="copyClipboard" > - - + > + + + @@ -3079,7 +3095,7 @@ exports[`Traces table component renders traces table 1`] = ` size="s" type="arrowDown" > - - + > + + + - - + > + + + @@ -3318,7 +3342,7 @@ exports[`Traces table component renders traces table 1`] = ` size="m" type="arrowRight" > - - + > + + + diff --git a/public/components/visualizations/charts/__tests__/__snapshots__/gauge.test.tsx.snap b/public/components/visualizations/charts/__tests__/__snapshots__/gauge.test.tsx.snap index 10c63f396a..6c6d9253e7 100644 --- a/public/components/visualizations/charts/__tests__/__snapshots__/gauge.test.tsx.snap +++ b/public/components/visualizations/charts/__tests__/__snapshots__/gauge.test.tsx.snap @@ -567,7 +567,7 @@ exports[`Gauge component Renders gauge component 1`] = ` size="xxl" type="visGauge" > - - + > + + + - - + > + + +

    Text