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

feat: remove snapshot_spec and duplicate commands #450

Merged

Conversation

SuZhou-Joe
Copy link
Member

@SuZhou-Joe SuZhou-Joe commented Jan 18, 2023

Signed-off-by: suzhou suzhou@amazon.com

Description

The snapshot spec is no long needed in IM plugin and blocked the E2E test in this repo.

Issues Resolved

[List any issues this PR will resolve]

Check List

  • Commits are signed per the DCO using --signoff

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.

@SuZhou-Joe SuZhou-Joe requested a review from a team as a code owner January 18, 2023 00:53
Signed-off-by: suzhou <suzhou@amazon.com>
@SuZhou-Joe SuZhou-Joe changed the title feat: remove snapshot_spec feat: remove snapshot_spec and duplicate commands Jan 18, 2023
Copy link
Member

@kavilla kavilla left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I still needed to delete more than these for this to work.

One function might also be causing conflicts or it's improperly defined.

Signed-off-by: suzhou <suzhou@amazon.com>
Signed-off-by: suzhou <suzhou@amazon.com>
@SuZhou-Joe
Copy link
Member Author

I still needed to delete more than these for this to work.

One function might also be causing conflicts or it's improperly defined.

The root cause is that IM plugin add a commands named addAlias, this commands has conflict with as built-in commands of cypress.

@SuZhou-Joe
Copy link
Member Author

SuZhou-Joe commented Jan 18, 2023

Add result log of the PR:

IM logs

yarn run v1.22.19
$ yarn cypress:run-without-security --spec 'cypress/integration/plugins/*/*.js'
$ env TZ=America/Los_Angeles NO_COLOR=1 cypress run --headless --env SECURITY_ENABLED=false --spec 'cypress/integration/plugins/*/*.js'

================================================================================

  (Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        9.5.4                                                                          │
  │ Browser:        Electron 94 (headless)                                                         │
  │ Node Version:   v14.21.2 (/local/home/suzhou/.nvm/versions/node/v14.21.2/bin/node)             │
  │ Specs:          54 found (plugins/alerting-dashboards-plugin/acknowledge_alerts_modal_spec.js, │
  │                  plugins/alerting-dashboards-plugin/alert_spec.js, plugins/alerting-dashboards │
  │                 -plugin/alerts_dashboard_flyout_spec.js, plugins/alerting-dashboards-plugin/bu │
  │                 cket_level_monitor_spec...)                                                    │
  │ Searched:       cypress/integration/plugins/*/*.js                                             │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/alerting-dashboards-plugin/acknowledge_alerts_modal_spec.js            (1 of 54)


  AcknowledgeAlertsModal
    1) "before all" hook for "Acknowledge button disabled when more than 1 trigger selected"


  0 passing (31s)
  1 failing

  1) AcknowledgeAlertsModal
       "before all" hook for "Acknowledge button disabled when more than 1 trigger selected":
     AssertionError: Timed out retrying after 20000ms: Expected to find content: 'sample_alerts_flyout_bucket_level_monitor' but never did.

Because this error occurred during a `before all` hook we are skipping the remaining tests in the current suite: `AcknowledgeAlertsModal`
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/alerting-dashboards-plugin/acknowledge_alerts_modal_spec.js:170:8)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        3                                                                                │
  │ Passing:      0                                                                                │
  │ Failing:      1                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      2                                                                                │
  │ Screenshots:  1                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     30 seconds                                                                       │
  │ Spec Ran:     plugins/alerting-dashboards-plugin/acknowledge_alerts_modal_spec.js              │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/alerting-dashboards-plugin/acknowledge_alerts_modal_spec.js/Acknowled               
     geAlertsModal -- Acknowledge button disabled when more than 1 trigger selected -               
     - before all hook (failed).png                                                                 


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (6 seconds)
                          est/cypress/videos/plugins/alerting-dashboards-plugin/ackno               
                          wledge_alerts_modal_spec.js.mp4                                           


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/alerting-dashboards-plugin/alert_spec.js                               (2 of 54)


  Alerts
    can be in 'Active' state
      ✓ after the monitor starts running (85184ms)
    can be in 'Acknowledged' state
      ✓ by clicking the button in Dashboard (10416ms)
    can be in 'Completed' state
      ✓ when the trigger condition is not met after met once (76931ms)
    can be in 'Error' state
      ✓ by using a wrong destination (9071ms)
    can be in 'Deleted' state
      ✓ by deleting the monitor (13955ms)


  5 passing (3m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 minutes, 16 seconds                                                            │
  │ Spec Ran:     plugins/alerting-dashboards-plugin/alert_spec.js                                 │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  29%
    Compression progress:  58%
    Compression progress:  88%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (37 seconds)
                          est/cypress/videos/plugins/alerting-dashboards-plugin/alert               
                          _spec.js.mp4                                                              


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/alerting-dashboards-plugin/alerts_dashboard_flyout_spec.js             (3 of 54)


  Alerts by trigger flyout
    ✓ Bucket-level monitor flyout test (111371ms)
    1) Query-level monitor flyout test


  1 passing (3m)
  1 failing

  1) Alerts by trigger flyout
       Query-level monitor flyout test:
     AssertionError: Timed out retrying after 20000ms: Expected to find content: '2 (High)' within the element: <div.euiText.euiText--medium> but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/alerting-dashboards-plugin/alerts_dashboard_flyout_spec.js:297:27)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        2                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      1                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  1                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 minutes, 30 seconds                                                            │
  │ Spec Ran:     plugins/alerting-dashboards-plugin/alerts_dashboard_flyout_spec.js               │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/alerting-dashboards-plugin/alerts_dashboard_flyout_spec.js/Alerts by                
     trigger flyout -- Query-level monitor flyout test (failed).png                                 


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  48%
    Compression progress:  92%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (28 seconds)
                          est/cypress/videos/plugins/alerting-dashboards-plugin/alert               
                          s_dashboard_flyout_spec.js.mp4                                            


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/alerting-dashboards-plugin/bucket_level_monitor_spec.js                (4 of 54)


  Bucket-Level Monitors
    can be created
      ✓ by extraction query (113417ms)
      ✓ by visual editor (84810ms)
    can be updated
      when defined by visual editor
        ✓ by adding trigger (48218ms)


  3 passing (4m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        3                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     4 minutes, 7 seconds                                                             │
  │ Spec Ran:     plugins/alerting-dashboards-plugin/bucket_level_monitor_spec.js                  │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  26%
    Compression progress:  53%
    Compression progress:  80%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (47 seconds)
                          est/cypress/videos/plugins/alerting-dashboards-plugin/bucke               
                          t_level_monitor_spec.js.mp4                                               

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/alerting-dashboards-plugin/cluster_metrics_monitor_spec.js             (5 of 54)


  ClusterMetricsMonitor
    can be created
      ✓ for the Cluster Health API (63925ms)
      ✓ for the Nodes Stats API (39227ms)
    displays Query parameters field appropriately
      ✓ for the CAT Snapshots API (24446ms)
    clearTriggersModal renders and behaves as expected
      ✓ when no triggers exist (15107ms)
      ✓ when triggers exist (26175ms)
    can update
      Cluster Health API monitor
        ✓ with a new trigger (39870ms)


  6 passing (4m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        6                                                                                │
  │ Passing:      6                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 minutes, 30 seconds                                                            │
  │ Spec Ran:     plugins/alerting-dashboards-plugin/cluster_metrics_monitor_spec.js               │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  31%
    Compression progress:  61%
    Compression progress:  91%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (40 seconds)
                          est/cypress/videos/plugins/alerting-dashboards-plugin/clust               
                          er_metrics_monitor_spec.js.mp4                                            

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/alerting-dashboards-plugin/query_level_monitor_spec.js                 (6 of 54)


  Query-Level Monitors
    can be created
      ✓ by extraction query (39416ms)
    can be updated
      ✓ by changing the name (23307ms)
    can be deleted
      ✓ from "Actions" menu (17765ms)
    can be searched
      ✓ by name (25777ms)
    can have triggers
      ✓ with names that contain periods (181976ms)
    schedule component displays as intended
      1) for an interval schedule
      2) for a cron expression schedule


  5 passing (6m)
  2 failing

  1) Query-Level Monitors
       schedule component displays as intended
         for an interval schedule:
     AssertionError: Timed out retrying after 20000ms: Expected to find element: `[data-test-subj="frequency_field"]`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/alerting-dashboards-plugin/query_level_monitor_spec.js:553:10)

  2) Query-Level Monitors
       schedule component displays as intended
         for a cron expression schedule:
     AssertionError: Timed out retrying after 20000ms: Expected to find element: `[data-test-subj="frequency_field"]`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/alerting-dashboards-plugin/query_level_monitor_spec.js:580:10)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        7                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  2                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     5 minutes, 56 seconds                                                            │
  │ Spec Ran:     plugins/alerting-dashboards-plugin/query_level_monitor_spec.js                   │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/alerting-dashboards-plugin/query_level_monitor_spec.js/Query-Level Mo               
     nitors -- schedule component displays as intended -- for an interval schedule (f               
     ailed).png                                                                                     
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/alerting-dashboards-plugin/query_level_monitor_spec.js/Query-Level Mo               
     nitors -- schedule component displays as intended -- for a cron expression sched               
     ule (failed).png                                                                               


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  16%
    Compression progress:  33%
    Compression progress:  49%
    Compression progress:  65%
    Compression progress:  81%
    Compression progress:  96%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t (1 minute, 8 …
                          est/cypress/videos/plugins/alerting-dashboards-plugin/query               
                          _level_monitor_spec.js.mp4                                                


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/anomaly-detection-dashboards-plugin/create_detector_spec.js            (7 of 54)


  Create detector workflow
    ✓ Full creation - based on real index (45156ms)


  1 passing (46s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     45 seconds                                                                       │
  │ Spec Ran:     plugins/anomaly-detection-dashboards-plugin/create_detector_spec.js              │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (9 seconds)
                          est/cypress/videos/plugins/anomaly-detection-dashboards-plu               
                          gin/create_detector_spec.js.mp4                                           


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/anomaly-detection-dashboards-plugin/dashboard_spec.js                  (8 of 54)


  AD Dashboard page
    ✓ Empty - no detector index (14806ms)
    ✓ Empty - empty detector index (6183ms)
    ✓ Non-empty - single running detector
    ✓ Redirect to create detector page
    ✓ Filter by detector (11641ms)
    ✓ Filter by detector state (9169ms)
    ✓ Filter by index (11374ms)
    ✓ Enter and exit full screen (11362ms)


  8 passing (1m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        8                                                                                │
  │ Passing:      8                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 minute, 12 seconds                                                             │
  │ Spec Ran:     plugins/anomaly-detection-dashboards-plugin/dashboard_spec.js                    │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  81%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (14 seconds)
                          est/cypress/videos/plugins/anomaly-detection-dashboards-plu               
                          gin/dashboard_spec.js.mp4                                                 


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/anomaly-detection-dashboards-plugin/detector_configuration_s           (9 of 54)
            pec.js                                                                                  


  Detector configuration page
    ✓ Redirect to edit detector settings from button (32898ms)
    ✓ Redirect to edit model configuration from button
    ✓ Redirect to edit detector settings from dropdown
    ✓ Redirect to edit model configuration from dropdown
    ✓ Delete detector from dropdown, redirects to detector list page


  5 passing (39s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     38 seconds                                                                       │
  │ Spec Ran:     plugins/anomaly-detection-dashboards-plugin/detector_configuration_spec.js       │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (8 seconds)
                          est/cypress/videos/plugins/anomaly-detection-dashboards-plu               
                          gin/detector_configuration_spec.js.mp4                                    


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/anomaly-detection-dashboards-plugin/detector_list_spec.js             (10 of 54)


  Detector list page
    ✓ Empty - no detector index (14947ms)
    ✓ Empty - empty detector index (6951ms)
    ✓ Non-empty - single stopped detector
    ✓ Non-empty - multiple detectors (5415ms)
    ✓ Redirect to create detector (5541ms)
    ✓ Start single detector (7297ms)
    ✓ Stop single detector (7039ms)
    ✓ Delete single detector (11036ms)
    ✓ Filter by detector search (8951ms)
    ✓ Filter by detector state (5953ms)
    ✓ Filter by index (6314ms)


  11 passing (1m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        11                                                                               │
  │ Passing:      11                                                                               │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 minute, 24 seconds                                                             │
  │ Spec Ran:     plugins/anomaly-detection-dashboards-plugin/detector_list_spec.js                │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  65%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (16 seconds)
                          est/cypress/videos/plugins/anomaly-detection-dashboards-plu               
                          gin/detector_list_spec.js.mp4                                             


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/anomaly-detection-dashboards-plugin/historical_analysis_spec          (11 of 54)
            .js                                                                                     


  Historical results page
    Sample detector
      ✓ Empty message with modal (26749ms)
      ✓ Start first historical analysis
      ✓ Produces anomaly results by default (18004ms)
      ✓ Filtering by date range (25767ms)
      ✓ Aggregations render anomalies (28559ms)
      ✓ Run subsequent historical analysis (17707ms)


  6 passing (2m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        6                                                                                │
  │ Passing:      6                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 minutes, 1 second                                                              │
  │ Spec Ran:     plugins/anomaly-detection-dashboards-plugin/historical_analysis_spec.js          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  50%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (24 seconds)
                          est/cypress/videos/plugins/anomaly-detection-dashboards-plu               
                          gin/historical_analysis_spec.js.mp4                                       

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/anomaly-detection-dashboards-plugin/overview_spec.js                  (12 of 54)


  Overview page
    ✓ Side nav AD button redirects to overview page (15532ms)
    Flyouts open and close
      ✓ HTTP responses sample detector (8244ms)
      ✓ eCommerce sample detector (5507ms)
      ✓ Host health sample detector (6484ms)


  4 passing (36s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        4                                                                                │
  │ Passing:      4                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     36 seconds                                                                       │
  │ Spec Ran:     plugins/anomaly-detection-dashboards-plugin/overview_spec.js                     │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (7 seconds)
                          est/cypress/videos/plugins/anomaly-detection-dashboards-plu               
                          gin/overview_spec.js.mp4                                                  


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/anomaly-detection-dashboards-plugin/real_time_results_spec.j          (13 of 54)
            s                                                                                       


  Real-time results page
    Sample detector
      ✓ Renders no anomalies (26568ms)
      ✓ Enter and exit full screen (5712ms)


  2 passing (34s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        2                                                                                │
  │ Passing:      2                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     34 seconds                                                                       │
  │ Spec Ran:     plugins/anomaly-detection-dashboards-plugin/real_time_results_spec.js            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (6 seconds)
                          est/cypress/videos/plugins/anomaly-detection-dashboards-plu               
                          gin/real_time_results_spec.js.mp4                                         


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/anomaly-detection-dashboards-plugin/sample_detector_spec.js           (14 of 54)


  Sample detectors
    ✓ HTTP response sample detector - create and delete (28212ms)
    ✓ eCommerce sample detector - create and delete (18848ms)
    ✓ Host health sample detector - create and delete (15278ms)


  3 passing (1m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        3                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 minute, 2 seconds                                                              │
  │ Spec Ran:     plugins/anomaly-detection-dashboards-plugin/sample_detector_spec.js              │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (12 seconds)
                          est/cypress/videos/plugins/anomaly-detection-dashboards-plu               
                          gin/sample_detector_spec.js.mp4                                           

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/custom-import-map-dashboards/documentsLayer.spec.js                   (15 of 54)


  Documents layer
    ✓ Add new documents layer with configuration (138598ms)
    ✓ Open saved map with documents layer (7997ms)


  2 passing (2m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        2                                                                                │
  │ Passing:      2                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 minutes, 26 seconds                                                            │
  │ Spec Ran:     plugins/custom-import-map-dashboards/documentsLayer.spec.js                      │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  38%
    Compression progress:  76%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (28 seconds)
                          est/cypress/videos/plugins/custom-import-map-dashboards/doc               
                          umentsLayer.spec.js.mp4                                                   


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/custom-import-map-dashboards/import_vector_map_tab.spec.js            (16 of 54)


  Verify the presence of import custom map tab in region map plugin
    ✓ checks import custom map tab is present (83001ms)


  1 passing (1m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 minute, 29 seconds                                                             │
  │ Spec Ran:     plugins/custom-import-map-dashboards/import_vector_map_tab.spec.js               │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (17 seconds)
                          est/cypress/videos/plugins/custom-import-map-dashboards/imp               
                          ort_vector_map_tab.spec.js.mp4                                            

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/custom-import-map-dashboards/opensearchMapLayer.spec.js               (17 of 54)


  Default OpenSearch base map layer
    ✓ check if default OpenSearch map layer can be open (122870ms)


  1 passing (2m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 minutes, 2 seconds                                                             │
  │ Spec Ran:     plugins/custom-import-map-dashboards/opensearchMapLayer.spec.js                  │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (23 seconds)
                          est/cypress/videos/plugins/custom-import-map-dashboards/ope               
                          nsearchMapLayer.spec.js.mp4                                               

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/gantt-chart-dashboards/gantt_ui.spec.js                               (18 of 54)


  Dump test data
    ✓ Indexes test data for gantt chart

  Save a gantt chart
    ✓ Creates and saves a gantt chart (32002ms)

  Render and configure a gantt chart
    ✓ Renders no data message (28986ms)
    ✓ Renders the chart (18911ms)

  Configure panel settings
    ✓ Changes y-axis label (24775ms)
    ✓ Changes x-axis label (26920ms)
    ✓ Changes time formats (44020ms)
    ✓ Hides legends (21119ms)

  Add gantt chart to dashboard
    ✓ Adds gantt chart to dashboard (14019ms)


  9 passing (4m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        9                                                                                │
  │ Passing:      9                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 minutes, 32 seconds                                                            │
  │ Spec Ran:     plugins/gantt-chart-dashboards/gantt_ui.spec.js                                  │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  27%
    Compression progress:  53%
    Compression progress:  79%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (41 seconds)
                          est/cypress/videos/plugins/gantt-chart-dashboards/gantt_ui.               
                          spec.js.mp4                                                               

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/index-management-dashboards-plugin/aliases.js                         (19 of 54)


  Aliases
    can be searched / sorted / paginated
      ✓ successfully (36527ms)
    shows more modal
      ✓ successfully (17561ms)
    can create a alias with wildcard and specific name
      ✓ successfully (15771ms)
    can edit / delete a alias
      ✓ successfully (21239ms)


  4 passing (2m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        4                                                                                │
  │ Passing:      4                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 minute, 33 seconds                                                             │
  │ Spec Ran:     plugins/index-management-dashboards-plugin/aliases.js                            │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  73%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (18 seconds)
                          est/cypress/videos/plugins/index-management-dashboards-plug               
                          in/aliases.js.mp4                                                         


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/index-management-dashboards-plugin/create_index.js                    (20 of 54)


  Create Index
    can be created and updated
      ✓ Create a index successfully (37099ms)
      ✓ Update alias successfully (14579ms)
      ✓ Update settings successfully (17417ms)
      ✓ Update mappings successfully (17925ms)


  4 passing (1m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        4                                                                                │
  │ Passing:      4                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 minute, 27 seconds                                                             │
  │ Spec Ran:     plugins/index-management-dashboards-plugin/create_index.js                       │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  74%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (17 seconds)
                          est/cypress/videos/plugins/index-management-dashboards-plug               
                          in/create_index.js.mp4                                                    


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/index-management-dashboards-plugin/indices_spec.js                    (21 of 54)


  Indices
    can be searched
      ✓ successfully (39588ms)
    can show data stream indices
      ✓ successfully (31154ms)
    can have policies applied
      ✓ successfully (38101ms)
    can make indices deleted
      ✓ successfully (13807ms)
    shows detail of a index when click the item
      ✓ successfully (9345ms)
    can search with reindex & recovery status
      ✓ Successfully (30013ms)
    can shrink an index
      1) successfully shrink an index
    can close and open an index
      ✓ successfully close an index (25348ms)
      ✓ successfully open an index (21432ms)


  8 passing (5m)
  1 failing

  1) Indices
       can shrink an index
         successfully shrink an index:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: 'Successfully started shrinking sample_index. The shrunken index will be named sample_index_shrunken.' but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/index-management-dashboards-plugin/indices_spec.js:483:10)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        9                                                                                │
  │ Passing:      8                                                                                │
  │ Failing:      1                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  1                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     4 minutes, 49 seconds                                                            │
  │ Spec Ran:     plugins/index-management-dashboards-plugin/indices_spec.js                       │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/index-management-dashboards-plugin/indices_spec.js/Indices -- can shr               
     ink an index -- successfully shrink an index (failed).png                                      


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  20%
    Compression progress:  40%
    Compression progress:  60%
    Compression progress:  78%
    Compression progress:  98%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (55 seconds)
                          est/cypress/videos/plugins/index-management-dashboards-plug               
                          in/indices_spec.js.mp4                                                    


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/index-management-dashboards-plugin/managed_indices_spec.js            (22 of 54)


  Managed indices
    can have policies removed
      ✓ successfully (41765ms)
    can have policies retried
      ✓ successfully (63707ms)
    can edit rollover_alias
      ✓ successfully (14286ms)
    can change policies
      ✓ successfully (40847ms)
    can manage data stream indices
      ✓ successfully (22226ms)


  5 passing (3m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 minutes, 3 seconds                                                             │
  │ Spec Ran:     plugins/index-management-dashboards-plugin/managed_indices_spec.js               │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  32%
    Compression progress:  64%
    Compression progress:  96%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (35 seconds)
                          est/cypress/videos/plugins/index-management-dashboards-plug               
                          in/managed_indices_spec.js.mp4                                            


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/index-management-dashboards-plugin/policies_spec.js                   (23 of 54)


  Policies
    can be created
      ✓ successfully (39953ms)
    can be edited
      ✓ successfully (34262ms)
    can be deleted
      ✓ successfully (17823ms)
    can be searched
      ✓ successfully (21960ms)
    can be viewed
      ✓ successfully (17542ms)


  5 passing (2m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 minutes, 11 seconds                                                            │
  │ Spec Ran:     plugins/index-management-dashboards-plugin/policies_spec.js                      │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  46%
    Compression progress:  90%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (25 seconds)
                          est/cypress/videos/plugins/index-management-dashboards-plug               
                          in/policies_spec.js.mp4                                                   


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/index-management-dashboards-plugin/reindex_spec.js                    (24 of 54)


  Reindex
    Reindex validation error
      ✓ source validation failed (36709ms)
    Reindex successfully
      ✓ successfully (66943ms)
    Reindex successfully for newly created index
      ✓ successfully (65584ms)


  3 passing (3m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        3                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 minutes, 49 seconds                                                            │
  │ Spec Ran:     plugins/index-management-dashboards-plugin/reindex_spec.js                       │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  50%
    Compression progress:  99%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (32 seconds)
                          est/cypress/videos/plugins/index-management-dashboards-plug               
                          in/reindex_spec.js.mp4                                                    

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/index-management-dashboards-plugin/rollups_spec.js                    (25 of 54)


  Rollups
    can be created
      ✓ successfully (67835ms)
    can be edited
      ✓ successfully (39830ms)
    can be deleted
      ✓ successfully (36902ms)
    can be enabled and disabled
      ✓ successfully (44380ms)


  4 passing (3m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        4                                                                                │
  │ Passing:      4                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 minutes, 9 seconds                                                             │
  │ Spec Ran:     plugins/index-management-dashboards-plugin/rollups_spec.js                       │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  36%
    Compression progress:  66%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (38 seconds)
                          est/cypress/videos/plugins/index-management-dashboards-plug               
                          in/rollups_spec.js.mp4                                                    

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/index-management-dashboards-plugin/split_index.js                     (26 of 54)


  Split Index
    can be created and updated
      ✓ Create an index successfully (28908ms)
      ✓ Split successfully (19970ms)
      ✓ Split successfully with advanced setting (19892ms)
      ✓ Split successfully with alias (15025ms)
      ✓ Update blocks write to true (15292ms)


  5 passing (2m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 minute, 39 seconds                                                             │
  │ Spec Ran:     plugins/index-management-dashboards-plugin/split_index.js                        │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  61%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (20 seconds)
                          est/cypress/videos/plugins/index-management-dashboards-plug               
                          in/split_index.js.mp4                                                     

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/index-management-dashboards-plugin/templates.js                       (27 of 54)


  Templates
    can be searched / sorted / paginated
      ✓ successfully (34401ms)
    can create a template
      ✓ successfully (26423ms)
    can delete a template
      ✓ successfully (22607ms)


  3 passing (1m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        3                                                                                │
  │ Passing:      3                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 minute, 26 seconds                                                             │
  │ Spec Ran:     plugins/index-management-dashboards-plugin/templates.js                          │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  85%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (16 seconds)
                          est/cypress/videos/plugins/index-management-dashboards-plug               
                          in/templates.js.mp4                                                       


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/index-management-dashboards-plugin/transforms_spec.js                 (28 of 54)


  Transforms
    can be created
      ✓ successfully (62558ms)
    can be edited
      ✓ successfully (32329ms)
    can be deleted
      ✓ successfully (25533ms)
    can be enabled and disabled
      ✓ successfully (28631ms)


  4 passing (2m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        4                                                                                │
  │ Passing:      4                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 minutes, 29 seconds                                                            │
  │ Spec Ran:     plugins/index-management-dashboards-plugin/transforms_spec.js                    │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  43%
    Compression progress:  85%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (29 seconds)
                          est/cypress/videos/plugins/index-management-dashboards-plug               
                          in/transforms_spec.js.mp4                                                 


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/notifications-dashboards/1_email_senders_and_groups.spec.js           (29 of 54)


  Test create email senders
    ✓ creates ssl sender (22825ms)
    ✓ creates tls sender (18442ms)
    ✓ creates SES sender (10071ms)

  Test edit senders
    ✓ edits sender email address (9456ms)
    1) edits ses sender region

  Test delete senders
    ✓ deletes smtp senders (7503ms)
    ✓ deletes ses senders (10962ms)

  Test create, edit and delete recipient group
    ✓ creates recipient group (18954ms)
    ✓ edits recipient group description (10182ms)
    ✓ opens email addresses popup
    ✓ deletes recipient groups (11626ms)


  10 passing (3m)
  1 failing

  1) Test edit senders
       edits ses sender region:
     CypressError: Timed out retrying after 60050ms: `cy.click()` failed because this element is `disabled`:

`<button class="euiButton euiButton--primary euiButton-isDisabled" disabled="" type="button" data-test-subj="ses-senders-table-edit-button">...</button>`

Fix this problem, or use `{force: true}` to disable error checking.

https://on.cypress.io/element-cannot-be-interacted-with
      at $Cy.ensureNotDisabled (http://localhost:5601/__cypress/runner/cypress_runner.js:163868:76)
      at runAllChecks (http://localhost:5601/__cypress/runner/cypress_runner.js:150539:14)
      at retryActionability (http://localhost:5601/__cypress/runner/cypress_runner.js:150616:16)
      at tryCatcher (http://localhost:5601/__cypress/runner/cypress_runner.js:13022:23)
      at Function.Promise.attempt.Promise.try (http://localhost:5601/__cypress/runner/cypress_runner.js:10296:29)
      at whenStable (http://localhost:5601/__cypress/runner/cypress_runner.js:168808:63)
      at http://localhost:5601/__cypress/runner/cypress_runner.js:168305:14
      at tryCatcher (http://localhost:5601/__cypress/runner/cypress_runner.js:13022:23)
      at Promise._settlePromiseFromHandler (http://localhost:5601/__cypress/runner/cypress_runner.js:10957:31)
      at Promise._settlePromise (http://localhost:5601/__cypress/runner/cypress_runner.js:11014:18)
      at Promise._settlePromise0 (http://localhost:5601/__cypress/runner/cypress_runner.js:11059:10)
      at Promise._settlePromises (http://localhost:5601/__cypress/runner/cypress_runner.js:11139:18)
      at Promise._fulfill (http://localhost:5601/__cypress/runner/cypress_runner.js:11083:18)
      at http://localhost:5601/__cypress/runner/cypress_runner.js:12697:46
  From Your Spec Code:
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/notifications-dashboards/1_email_senders_and_groups.spec.js:185:64)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        11                                                                               │
  │ Passing:      10                                                                               │
  │ Failing:      1                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  1                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 minutes, 10 seconds                                                            │
  │ Spec Ran:     plugins/notifications-dashboards/1_email_senders_and_groups.spec.js              │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/notifications-dashboards/1_email_senders_and_groups.spec.js/Test edit               
      senders -- edits ses sender region (failed).png                                               


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  29%
    Compression progress:  58%
    Compression progress:  86%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (38 seconds)
                          est/cypress/videos/plugins/notifications-dashboards/1_email               
                          _senders_and_groups.spec.js.mp4                                           


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/notifications-dashboards/2_channels.spec.js                           (30 of 54)


  Test create channels
    ✓ creates a slack channel and send test message (22677ms)
    ✓ creates a chime channel (13671ms)
    1) creates a email channel
    2) creates a email channel with ses sender
    ✓ creates a webhook channel (17473ms)
    ✓ creates a sns channel (13513ms)

  Test channels table
    3) displays channels
    ✓ mutes channels (15793ms)
    ✓ filters channels (13084ms)

  Test channel details
    ✓ displays channel details (17159ms)
    ✓ mutes and unmutes channels (24591ms)
    ✓ edits channels (25848ms)
    ✓ deletes channels (22115ms)


  10 passing (7m)
  3 failing

  1) Test create channels
       creates a email channel:
     CypressError: Timed out retrying after 60050ms: `cy.click()` failed because this element:

`<button class="euiButton euiButton--primary euiButton--fill" type="button" data-test-subj="create-recipient-group-modal-create-button">...</button>`

is being covered by another element:

`<div style="position: relative; height: 30px; width: 600px; overflow: auto; will-change: transform; direction: ltr;">...</div>`

Fix this problem, or use {force: true} to disable error checking.

https://on.cypress.io/element-cannot-be-interacted-with
      at $Cy.ensureDescendents (http://localhost:5601/__cypress/runner/cypress_runner.js:164076:78)
      at ensureDescendents (http://localhost:5601/__cypress/runner/cypress_runner.js:150263:8)
      at ensureDescendentsAndScroll (http://localhost:5601/__cypress/runner/cypress_runner.js:150270:14)
      at ensureElIsNotCovered (http://localhost:5601/__cypress/runner/cypress_runner.js:150402:5)
      at runAllChecks (http://localhost:5601/__cypress/runner/cypress_runner.js:150592:52)
      at retryActionability (http://localhost:5601/__cypress/runner/cypress_runner.js:150616:16)
      at tryCatcher (http://localhost:5601/__cypress/runner/cypress_runner.js:13022:23)
      at Function.Promise.attempt.Promise.try (http://localhost:5601/__cypress/runner/cypress_runner.js:10296:29)
      at whenStable (http://localhost:5601/__cypress/runner/cypress_runner.js:168808:63)
      at http://localhost:5601/__cypress/runner/cypress_runner.js:168305:14
      at tryCatcher (http://localhost:5601/__cypress/runner/cypress_runner.js:13022:23)
      at Promise._settlePromiseFromHandler (http://localhost:5601/__cypress/runner/cypress_runner.js:10957:31)
      at Promise._settlePromise (http://localhost:5601/__cypress/runner/cypress_runner.js:11014:18)
      at Promise._settlePromise0 (http://localhost:5601/__cypress/runner/cypress_runner.js:11059:10)
      at Promise._settlePromises (http://localhost:5601/__cypress/runner/cypress_runner.js:11139:18)
      at Promise._fulfill (http://localhost:5601/__cypress/runner/cypress_runner.js:11083:18)
  From Your Spec Code:
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/notifications-dashboards/2_channels.spec.js:165:77)

  2) Test create channels
       creates a email channel with ses sender:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: 'Test recipient group' but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/notifications-dashboards/2_channels.spec.js:197:8)

  3) Test channels table
       displays channels:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: 'Test email channel' but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/notifications-dashboards/2_channels.spec.js:239:39)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        13                                                                               │
  │ Passing:      10                                                                               │
  │ Failing:      3                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  3                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     6 minutes, 49 seconds                                                            │
  │ Spec Ran:     plugins/notifications-dashboards/2_channels.spec.js                              │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/notifications-dashboards/2_channels.spec.js/Test create channels -- c               
     reates a email channel (failed).png                                                            
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/notifications-dashboards/2_channels.spec.js/Test create channels -- c               
     reates a email channel with ses sender (failed).png                                            
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/notifications-dashboards/2_channels.spec.js/Test channels table -- di               
     splays channels (failed).png                                                                   


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  14%
    Compression progress:  28%
    Compression progress:  42%
    Compression progress:  56%
    Compression progress:  69%
    Compression progress:  82%
    Compression progress:  95%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t (1 minute, 18…
                          est/cypress/videos/plugins/notifications-dashboards/2_chann               
                          els.spec.js.mp4                                                           


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/observability-dashboards/0_before.spec.js                             (31 of 54)


  Before
    ✓ setup completed (38380ms)


  1 passing (38s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     38 seconds                                                                       │
  │ Spec Ran:     plugins/observability-dashboards/0_before.spec.js                                │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (7 seconds)
                          est/cypress/videos/plugins/observability-dashboards/0_befor               
                          e.spec.js.mp4                                                             


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/observability-dashboards/1_trace_analytics_dashboard.spec.js          (32 of 54)


  Testing dashboard table empty state
    ✓ Renders empty state (29460ms)

  Testing dashboard table
    ✓ Renders the dashboard table (24822ms)
    ✓ Has working breadcrumbs (24991ms)
    ✓ Adds the percentile filters (49900ms)
    ✓ Opens latency trend popover (52049ms)
    ✓ Redirects to traces table with filter (28231ms)

  Testing plots
    ✓ Renders service map (21719ms)
    ✓ Renders plots (14158ms)


  8 passing (4m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        8                                                                                │
  │ Passing:      8                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     4 minutes, 8 seconds                                                             │
  │ Spec Ran:     plugins/observability-dashboards/1_trace_analytics_dashboard.spec.js             │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  22%
    Compression progress:  44%
    Compression progress:  67%
    Compression progress:  89%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (48 seconds)
                          est/cypress/videos/plugins/observability-dashboards/1_trace               
                          _analytics_dashboard.spec.js.mp4                                          


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/observability-dashboards/2_trace_analytics_services.spec.js           (33 of 54)


  Testing services table empty state
    ✓ Renders empty state (28606ms)

  Testing services table
    ✓ Renders the services table (19374ms)
    ✓ Searches correctly (34239ms)

  Testing service view empty state
    ✓ Renders service view empty state (14820ms)

  Testing service view
    ✓ Renders service view (15045ms)
    ✓ Has working breadcrumbs (24033ms)
    1) Renders spans data grid, flyout, filters


  6 passing (3m)
  1 failing

  1) Testing service view
       Renders spans data grid, flyout, filters:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: '7df5609a6d104736' within the element: [ <a.euiLink.euiLink--subdued.euiBreadcrumb.osdBreadcrumbs>, 7 more... ] but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/2_trace_analytics_services.spec.js:194:24)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        7                                                                                │
  │ Passing:      6                                                                                │
  │ Failing:      1                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  1                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 minutes, 28 seconds                                                            │
  │ Spec Ran:     plugins/observability-dashboards/2_trace_analytics_services.spec.js              │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/2_trace_analytics_services.spec.js/Testing s               
     ervice view -- Renders spans data grid, flyout, filters (failed).png                           


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  38%
    Compression progress:  76%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (40 seconds)
                          est/cypress/videos/plugins/observability-dashboards/2_trace               
                          _analytics_services.spec.js.mp4                                           

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/observability-dashboards/3_trace_analytics_traces.spec.js             (34 of 54)


  Testing traces table empty state
    ✓ Renders empty state (29323ms)

  Testing traces table
    ✓ Renders the traces table (21898ms)
    ✓ Sorts the traces table (13583ms)
    ✓ Searches correctly (20919ms)

  Testing trace view
    1) Renders the trace view
    ✓ Has working breadcrumbs (16068ms)
    2) Renders data grid, flyout and filters


  5 passing (4m)
  2 failing

  1) Testing trace view
       Renders the trace view:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: '43.75%' but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/3_trace_analytics_traces.spec.js:160:27)

  2) Testing trace view
       Renders data grid, flyout and filters:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: '2 columns hidden' but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/3_trace_analytics_traces.spec.js:186:37)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        7                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  2                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 minutes, 51 seconds                                                            │
  │ Spec Ran:     plugins/observability-dashboards/3_trace_analytics_traces.spec.js                │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/3_trace_analytics_traces.spec.js/Testing tra               
     ce view -- Renders the trace view (failed).png                                                 
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/3_trace_analytics_traces.spec.js/Testing tra               
     ce view -- Renders data grid, flyout and filters (failed).png                                  


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  32%
    Compression progress:  64%
    Compression progress:  96%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (44 seconds)
                          est/cypress/videos/plugins/observability-dashboards/3_trace               
                          _analytics_traces.spec.js.mp4                                             

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/observability-dashboards/4_panels.spec.js                             (35 of 54)


  Creating visualizations
    ✓ Create first visualization in event analytics (36668ms)
    ✓ Create second visualization in event analytics (32985ms)

  Testing panels table
    ✓ Displays error toast for invalid panel name (5946ms)
    ✓ Creates a panel and redirects to the panel (9030ms)
    ✓ Duplicates and renames a panel (14025ms)
    ✓ Searches existing panel (9512ms)
    ✓ Deletes panels (10426ms)

  Testing a panel
    ✓ Move to test panel (5630ms)
    1) Opens visualization flyout from empty panel
    ✓ Redirects to correct page on breadcrumb click (11081ms)
    ✓ Duplicate the open panel (10155ms)
    ✓ Rename the open panel (5591ms)
    ✓ Change date filter of the panel (7658ms)
    ✓ Add existing visualization #1 (6509ms)
    ✓ Add existing visualization #2 (7672ms)
    ✓ Add ppl filter to panel (41327ms)
    ✓ Drag and drop a visualization
    ✓ Resize a visualization
    ✓ Delete a visualization
    ✓ Duplicate a visualization
    ✓ Replace a visualization
    2) Create new visualization and add to panel
    3) Move to test panel and check visualization edit button

  Clean up all test data
    ✓ Delete visualizations from event analytics (17934ms)
    ✓ Deletes test panel (11939ms)


  22 passing (9m)
  3 failing

  1) Testing a panel
       Opens visualization flyout from empty panel:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `.euiCallOut`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/4_panels.spec.js:266:8)

  2) Testing a panel
       Create new visualization and add to panel:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: 'Average flight delayTime minutes' within the element: [ <h5>, 2 more... ] but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/4_panels.spec.js:458:67)

  3) Testing a panel
       Move to test panel and check visualization edit button:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: 'Average flight delayTime minutes' within the element: [ <h5>, 2 more... ] but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/4_panels.spec.js:482:67)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        25                                                                               │
  │ Passing:      22                                                                               │
  │ Failing:      3                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  3                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     8 minutes, 39 seconds                                                            │
  │ Spec Ran:     plugins/observability-dashboards/4_panels.spec.js                                │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/4_panels.spec.js/Testing a panel -- Opens vi               
     sualization flyout from empty panel (failed).png                                               
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/4_panels.spec.js/Testing a panel -- Create n               
     ew visualization and add to panel (failed).png                                                 
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/4_panels.spec.js/Testing a panel -- Move to                
     test panel and check visualization edit button (failed).png                                    


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  11%
    Compression progress:  21%
    Compression progress:  31%
    Compression progress:  41%
    Compression progress:  51%
    Compression progress:  61%
    Compression progress:  72%
    Compression progress:  82%
    Compression progress:  93%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t (1 minute, 39…
                          est/cypress/videos/plugins/observability-dashboards/4_panel               
                          s.spec.js.mp4                                                             


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/observability-dashboards/5_event_analytics.spec.js                    (36 of 54)


  Has working breadcrumbs
    ✓ Redirect to correct page on breadcrumb click (27483ms)

  Search a query on event home
    ✓ Search a query and redirect to explorer to display query output (14262ms)

  Open flyout for a data row to see details
    ✓ Should be able to open flyout and see data, json and traces (34092ms)
    1) Should be able to see srrounding docs

  Add/delete/switch explorer top level tabs
    ✓ Add a new tab (12626ms)
    ✓ Click to switch to anther tab (10880ms)
    2) Close a tab
    ✓ Close current selected tab (8108ms)
    3) Close another unselected tab

  Load a saved query from event home
    ✓ Click on a saved query and redirect to explorer (28173ms)

  Click actions
    ✓ Actions - click event explorer (8591ms)
    ✓ Actions - add sample data (20486ms)
    ✓ Actions - delete saved queries (12623ms)

  Saves a query on explorer page
    ✓ Saves a query on event tab of explorer page (37927ms)
    4) Saves a visualization on visualization tab of explorer page
    5) Saves a visualization to an existing panel

  Override timestamp for an index
    6) Click override button to override default timestamp

  Toggle sidebar fields
    7) Toggle fields between available and selected section

  Search fields in sidebar
    ✓ Search a field (29070ms)

  Delete saved objects
    ✓ Delete visualizations/querys from event analytics (26052ms)

  Click to view field insights
    8) Click a numerical field to view field insights
    9) Click a non-numerical field to view insights

  Switch on and off livetail
    ✓ Switch on and off in live tail (30985ms)

  Live tail stop automatically
    ✓ Moving to other tab should stop live tail automatically (23582ms)
    ✓ Add a new tab
    ✓ Click to switch to another tab
    10) Close current selected tab
    ✓ Live tail should be stopped

  Renders noresult chart
    11) It should render no result when there is no data

  Renders bar charts
    12) Renders vertical bar chart
    13) Renders horiztontal bar chart

  Renders line charts
    14) Renders line chart with threshold

  Renders pie charts
    15) Renders pie chart

  Renders heatmap chart
    16) Renders heatmap chart with different z-axes

  Renders markdown chart
    17) Renders markdown chart with test title

  Renders data view
    18) Switch views between data table and visualization workspace


  18 passing (31m)
  18 failing

  1) Open flyout for a data row to see details
       Should be able to see srrounding docs:
     CypressError: Timed out retrying after 60050ms: `cy.click()` failed because this element:

          `<span class="euiButton__text">View su...</span>`

          has CSS `pointer-events: none`, inherited from this element:

`<button class="euiButton euiButton--primary euiButton-isDisabled header-button" disabled="" type="button">...</button>`

          `pointer-events: none` prevents user mouse interaction.

          Fix this problem, or use {force: true} to disable error checking.

https://on.cypress.io/element-cannot-be-interacted-with
      at $Cy.ensureElDoesNotHaveCSS (http://localhost:5601/__cypress/runner/cypress_runner.js:164049:76)
      at ensureDescendents (http://localhost:5601/__cypress/runner/cypress_runner.js:150261:8)
      at ensureDescendentsAndScroll (http://localhost:5601/__cypress/runner/cypress_runner.js:150270:14)
      at ensureElIsNotCovered (http://localhost:5601/__cypress/runner/cypress_runner.js:150402:5)
      at runAllChecks (http://localhost:5601/__cypress/runner/cypress_runner.js:150592:52)
      at retryActionability (http://localhost:5601/__cypress/runner/cypress_runner.js:150616:16)
      at tryCatcher (http://localhost:5601/__cypress/runner/cypress_runner.js:13022:23)
      at Function.Promise.attempt.Promise.try (http://localhost:5601/__cypress/runner/cypress_runner.js:10296:29)
      at whenStable (http://localhost:5601/__cypress/runner/cypress_runner.js:168808:63)
      at http://localhost:5601/__cypress/runner/cypress_runner.js:168305:14
      at tryCatcher (http://localhost:5601/__cypress/runner/cypress_runner.js:13022:23)
      at Promise._settlePromiseFromHandler (http://localhost:5601/__cypress/runner/cypress_runner.js:10957:31)
      at Promise._settlePromise (http://localhost:5601/__cypress/runner/cypress_runner.js:11014:18)
      at Promise._settlePromise0 (http://localhost:5601/__cypress/runner/cypress_runner.js:11059:10)
      at Promise._settlePromises (http://localhost:5601/__cypress/runner/cypress_runner.js:11139:18)
      at Promise._fulfill (http://localhost:5601/__cypress/runner/cypress_runner.js:11083:18)
  From Your Spec Code:
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:159:94)

  2) Add/delete/switch explorer top level tabs
       Close a tab:

      AssertionError: Timed out retrying after 60000ms: Too many elements found. Found '6', expected '5'.
      + expected - actual

      -6
      +5
      
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:185:89)

  3) Add/delete/switch explorer top level tabs
       Close another unselected tab:

      AssertionError: Timed out retrying after 60000ms: Too many elements found. Found '7', expected '6'.
      + expected - actual

      -7
      +6
      
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:206:89)

  4) Saves a query on explorer page
       Saves a visualization on visualization tab of explorer page:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: 'successfully' within the element: <span.euiToastHeader__title> but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:284:63)

  5) Saves a query on explorer page
       Saves a visualization to an existing panel:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: 'successfully' within the element: <span.euiToastHeader__title> but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:308:63)

  6) Override timestamp for an index
       Click override button to override default timestamp:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `[data-attr-field="utc_time"] [data-test-subj="eventFields__default-timestamp-mark"`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:319:8)

  7) Toggle sidebar fields
       Toggle fields between available and selected section:
     CypressError: Timed out retrying after 60050ms: `cy.click()` failed because this element is `disabled`:

`<button disabled="" class="euiButtonIcon euiButtonIcon-isDisabled euiButtonIcon--ghost euiButtonIcon--fill euiButtonIcon--xSmall dscSidebarItem__action" type="button" data-test-subj="fieldToggle-AvgTicketPrice" aria-label="Add AvgTicketPrice to table">...</button>`

Fix this problem, or use `{force: true}` to disable error checking.

https://on.cypress.io/element-cannot-be-interacted-with
      at $Cy.ensureNotDisabled (http://localhost:5601/__cypress/runner/cypress_runner.js:163868:76)
      at runAllChecks (http://localhost:5601/__cypress/runner/cypress_runner.js:150539:14)
      at retryActionability (http://localhost:5601/__cypress/runner/cypress_runner.js:150616:16)
      at tryCatcher (http://localhost:5601/__cypress/runner/cypress_runner.js:13022:23)
      at Function.Promise.attempt.Promise.try (http://localhost:5601/__cypress/runner/cypress_runner.js:10296:29)
      at whenStable (http://localhost:5601/__cypress/runner/cypress_runner.js:168808:63)
      at http://localhost:5601/__cypress/runner/cypress_runner.js:168305:14
      at tryCatcher (http://localhost:5601/__cypress/runner/cypress_runner.js:13022:23)
      at Promise._settlePromiseFromHandler (http://localhost:5601/__cypress/runner/cypress_runner.js:10957:31)
      at Promise._settlePromise (http://localhost:5601/__cypress/runner/cypress_runner.js:11014:18)
      at Promise._settlePromise0 (http://localhost:5601/__cypress/runner/cypress_runner.js:11059:10)
      at Promise._settlePromises (http://localhost:5601/__cypress/runner/cypress_runner.js:11139:18)
      at Promise._fulfill (http://localhost:5601/__cypress/runner/cypress_runner.js:11083:18)
      at http://localhost:5601/__cypress/runner/cypress_runner.js:12697:46
  From Your Spec Code:
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:328:61)

  8) Click to view field insights
       Click a numerical field to view field insights:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `[data-test-subj="field-bytes-showDetails"]`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:373:8)

  9) Click to view field insights
       Click a non-numerical field to view insights:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `[data-test-subj="field-host-showDetails"]`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:381:8)

  10) Live tail stop automatically
       Close current selected tab:
     CypressError: Timed out retrying after 60050ms: `cy.click()` failed because this element is detached from the DOM.

`<a class="linkNewTag" data-test-subj="eventExplorer__addNewTab">+ Add new</a>`

Cypress requires elements be attached in the DOM to interact with them.

The previous command that ran was:

  > `cy.get()`

This DOM element likely became detached somewhere between the previous and current command.

Common situations why this happens:
  - Your JS framework re-rendered asynchronously
  - Your app code reacted to an event firing and removed the element

You typically need to re-query for the element or add 'guards' which delay Cypress from running new commands.

https://on.cypress.io/element-has-detached-from-dom
      at $Cy.ensureAttached (http://localhost:5601/__cypress/runner/cypress_runner.js:163936:76)
      at runAllChecks (http://localhost:5601/__cypress/runner/cypress_runner.js:150536:12)
      at retryActionability (http://localhost:5601/__cypress/runner/cypress_runner.js:150616:16)
      at tryCatcher (http://localhost:5601/__cypress/runner/cypress_runner.js:13022:23)
      at Function.Promise.attempt.Promise.try (http://localhost:5601/__cypress/runner/cypress_runner.js:10296:29)
      at whenStable (http://localhost:5601/__cypress/runner/cypress_runner.js:168808:63)
      at http://localhost:5601/__cypress/runner/cypress_runner.js:168305:14
      at tryCatcher (http://localhost:5601/__cypress/runner/cypress_runner.js:13022:23)
      at Promise._settlePromiseFromHandler (http://localhost:5601/__cypress/runner/cypress_runner.js:10957:31)
      at Promise._settlePromise (http://localhost:5601/__cypress/runner/cypress_runner.js:11014:18)
      at Promise._settlePromise0 (http://localhost:5601/__cypress/runner/cypress_runner.js:11059:10)
      at Promise._settlePromises (http://localhost:5601/__cypress/runner/cypress_runner.js:11139:18)
      at Promise._fulfill (http://localhost:5601/__cypress/runner/cypress_runner.js:11083:18)
      at http://localhost:5601/__cypress/runner/cypress_runner.js:12697:46
  From Your Spec Code:
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:427:59)

  11) Renders noresult chart
       It should render no result when there is no data:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: 'No results found' within the element: <p> but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:446:86)

  12) Renders bar charts
       Renders vertical bar chart:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:455:8)

  13) Renders bar charts
       Renders horiztontal bar chart:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:476:8)

  14) Renders line charts
       Renders line chart with threshold:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:502:8)

  15) Renders pie charts
       Renders pie chart:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:525:8)

  16) Renders heatmap chart
       Renders heatmap chart with different z-axes:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:537:8)

  17) Renders markdown chart
       Renders markdown chart with test title:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `[data-test-subj="configPane__vizTypeSelector"] [data-test-subj="comboBoxInput"]`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:559:8)

  18) Renders data view
       Switch views between data table and visualization workspace:
     CypressError: Timed out retrying after 60050ms: `cy.click()` failed because this element is `disabled`:

`<button id="i99cf6ab2-9718-11ed-acaf-e3d8b6ec5565" aria-checked="false" class="euiSwitch__button" role="switch" type="button" disabled="" aria-labelledby="i99cf6ab4-9718-11ed-acaf-e3d8b6ec5565" aria-describedby="table view switcher" data-test-subj="workspace__dataTableViewSwitch">...</button>`

Fix this problem, or use `{force: true}` to disable error checking.

https://on.cypress.io/element-cannot-be-interacted-with
      at $Cy.ensureNotDisabled (http://localhost:5601/__cypress/runner/cypress_runner.js:163868:76)
      at runAllChecks (http://localhost:5601/__cypress/runner/cypress_runner.js:150539:14)
      at retryActionability (http://localhost:5601/__cypress/runner/cypress_runner.js:150616:16)
      at tryCatcher (http://localhost:5601/__cypress/runner/cypress_runner.js:13022:23)
      at Function.Promise.attempt.Promise.try (http://localhost:5601/__cypress/runner/cypress_runner.js:10296:29)
      at whenStable (http://localhost:5601/__cypress/runner/cypress_runner.js:168808:63)
      at http://localhost:5601/__cypress/runner/cypress_runner.js:168305:14
      at tryCatcher (http://localhost:5601/__cypress/runner/cypress_runner.js:13022:23)
      at Promise._settlePromiseFromHandler (http://localhost:5601/__cypress/runner/cypress_runner.js:10957:31)
      at Promise._settlePromise (http://localhost:5601/__cypress/runner/cypress_runner.js:11014:18)
      at Promise._settlePromise0 (http://localhost:5601/__cypress/runner/cypress_runner.js:11059:10)
      at Promise._settlePromises (http://localhost:5601/__cypress/runner/cypress_runner.js:11139:18)
      at Promise._fulfill (http://localhost:5601/__cypress/runner/cypress_runner.js:11083:18)
      at http://localhost:5601/__cypress/runner/cypress_runner.js:12697:46
  From Your Spec Code:
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/5_event_analytics.spec.js:574:65)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        36                                                                               │
  │ Passing:      18                                                                               │
  │ Failing:      18                                                                               │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  18                                                                               │
  │ Video:        true                                                                             │
  │ Duration:     31 minutes, 22 seconds                                                           │
  │ Spec Ran:     plugins/observability-dashboards/5_event_analytics.spec.js                       │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Open flyout for a                
     data row to see details -- Should be able to see srrounding docs (failed).png                  
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Adddeleteswitch ex               
     plorer top level tabs -- Close a tab (failed).png                                              
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Adddeleteswitch ex               
     plorer top level tabs -- Close another unselected tab (failed).png                             
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Saves a query on e               
     xplorer page -- Saves a visualization on visualization tab of explorer page (fai               
     led).png                                                                                       
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Saves a query on e               
     xplorer page -- Saves a visualization to an existing panel (failed).png                        
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Override timestamp               
      for an index -- Click override button to override default timestamp (failed).pn               
     g                                                                                              
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Toggle sidebar fie               
     lds -- Toggle fields between available and selected section (failed).png                       
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Click to view fiel               
     d insights -- Click a numerical field to view field insights (failed).png                      
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Click to view fiel               
     d insights -- Click a non-numerical field to view insights (failed).png                        
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Live tail stop aut               
     omatically -- Close current selected tab (failed).png                                          
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Renders noresult c               
     hart -- It should render no result when there is no data (failed).png                          
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Renders bar charts               
      -- Renders vertical bar chart (failed).png                                                    
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Renders bar charts               
      -- Renders horiztontal bar chart (failed).png                                                 
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Renders line chart               
     s -- Renders line chart with threshold (failed).png                                            
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Renders pie charts               
      -- Renders pie chart (failed).png                                                             
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Renders heatmap ch               
     art -- Renders heatmap chart with different z-axes (failed).png                                
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Renders markdown c               
     hart -- Renders markdown chart with test title (failed).png                                    
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/5_event_analytics.spec.js/Renders data view                
     -- Switch views between data table and visualization workspace (failed).png                    


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  3%
    Compression progress:  6%
    Compression progress:  9%
    Compression progress:  12%
    Compression progress:  15%
    Compression progress:  18%
    Compression progress:  21%
    Compression progress:  24%
    Compression progress:  27%
    Compression progress:  30%
    Compression progress:  32%
    Compression progress:  36%
    Compression progress:  38%
    Compression progress:  42%
    Compression progress:  44%
    Compression progress:  47%
    Compression progress:  50%
    Compression progress:  53%
    Compression progress:  56%
    Compression progress:  59%
    Compression progress:  62%
    Compression progress:  65%
    Compression progress:  68%
    Compression progress:  71%
    Compression progress:  74%
    Compression progress:  77%
    Compression progress:  80%
    Compression progress:  83%
    Compression progress:  86%
    Compression progress:  89%
    Compression progress:  92%
    Compression progress:  95%
    Compression progress:  98%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t (5 minutes, 5…
                          est/cypress/videos/plugins/observability-dashboards/5_event               
                          _analytics.spec.js.mp4                                                    

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/observability-dashboards/6_notebooks.spec.js                          (37 of 54)


  Adding sample visualization
    ✓ Add sample observability data (24565ms)

  Testing notebooks table
    ✓ Displays error toast for invalid notebook name (11398ms)
    ✓ Creates a notebook and redirects to the notebook (11996ms)
    ✓ Duplicates and renames a notebook (22109ms)
    ✓ Searches existing notebooks (11478ms)
    ✓ Deletes notebooks (17071ms)

  Test reporting integration if plugin installed
    1) Create in-context PDF report from notebook
    2) Create in-context PNG report from notebook
    3) Create on-demand report definition from context menu
    4) View reports homepage from context menu

  Testing paragraphs
    ✓ Goes into a notebook and creates paragraphs (25189ms)
    ✓ Has working breadcrumbs (13311ms)
    ✓ Renders markdown (8625ms)
    ✓ Shows output message (14091ms)
    ✓ Renders input only mode (10805ms)
    ✓ Renders output only mode (7588ms)
    ✓ Duplicates paragraphs (12401ms)
    ✓ Adds a dashboards visualization paragraph (29063ms)
    ✓ Adds a SQL query paragraph (30691ms)
    ✓ Adds an observability visualization paragraph (36356ms)
    ✓ Adds a PPL query paragraph (35250ms)
    ✓ Clears outputs (21608ms)
    ✓ Runs all paragraphs (17254ms)
    ✓ Adds paragraph to top and bottom (32226ms)
    ✓ Moves paragraphs (18831ms)
    ✓ Duplicates and renames the notebook (38951ms)
    ✓ Deletes paragraphs (19967ms)
    ✓ Deletes notebook (18288ms)
    ✓ Cleans up test notebooks (18681ms)

  clean up all test data
    ✓ Delete visualizations from event analytics (20718ms)
    ✓ Deletes test panel (15850ms)


  27 passing (14m)
  4 failing

  1) Test reporting integration if plugin installed
       Create in-context PDF report from notebook:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: 'Download PDF' within the element: <button.euiContextMenuItem> but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/6_notebooks.spec.js:217:54)

  2) Test reporting integration if plugin installed
       Create in-context PNG report from notebook:
     AssertionError: Timed out retrying after 60000ms: Expected to find content: 'Download PNG' within the element: <button.euiContextMenuItem> but never did.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/6_notebooks.spec.js:223:54)

  3) Test reporting integration if plugin installed
       Create on-demand report definition from context menu:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `button.euiContextMenuItem:nth-child(3)`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/6_notebooks.spec.js:229:8)

  4) Test reporting integration if plugin installed
       View reports homepage from context menu:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `button.euiContextMenuItem:nth-child(4)`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/6_notebooks.spec.js:243:8)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        31                                                                               │
  │ Passing:      27                                                                               │
  │ Failing:      4                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  4                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     14 minutes, 2 seconds                                                            │
  │ Spec Ran:     plugins/observability-dashboards/6_notebooks.spec.js                             │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/6_notebooks.spec.js/Test reporting integrati               
     on if plugin installed -- Create in-context PDF report from notebook (failed).pn               
     g                                                                                              
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/6_notebooks.spec.js/Test reporting integrati               
     on if plugin installed -- Create in-context PNG report from notebook (failed).pn               
     g                                                                                              
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/6_notebooks.spec.js/Test reporting integrati               
     on if plugin installed -- Create on-demand report definition from context menu (               
     failed).png                                                                                    
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/6_notebooks.spec.js/Test reporting integrati               
     on if plugin installed -- View reports homepage from context menu (failed).png                 


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  7%
    Compression progress:  13%
    Compression progress:  19%
    Compression progress:  26%
    Compression progress:  32%
    Compression progress:  39%
    Compression progress:  45%
    Compression progress:  52%
    Compression progress:  58%
    Compression progress:  64%
    Compression progress:  70%
    Compression progress:  77%
    Compression progress:  83%
    Compression progress:  90%
    Compression progress:  97%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t (2 minutes, 3…
                          est/cypress/videos/plugins/observability-dashboards/6_noteb               
                          ooks.spec.js.mp4                                                          


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/observability-dashboards/7_app_analytics.spec.js                      (38 of 54)


  Creating application
    ✓ Creates an application and redirects to application (125862ms)

  Viewing application
    ✓ Saves visualization #1 to panel (164572ms)
    1) Adds availability level to visualization #1
    2) Saves visualization #2 to panel with availability level
    3) Changes availability visualization

  Editing application
    ✓ Redirects to application after saving changes (44706ms)

  Application Analytics home page
    ✓ Renames application (18054ms)
    ✓ Deletes application (11535ms)


  5 passing (11m)
  3 failing

  1) Viewing application
       Adds availability level to visualization #1:
     AssertionError: Timed out retrying after 30000ms: Expected to find element: `[title="Bar"]`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/7_app_analytics.spec.js:246:8)

  2) Viewing application
       Saves visualization #2 to panel with availability level:
     AssertionError: Timed out retrying after 30000ms: Expected to find element: `[title="Bar"]`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/7_app_analytics.spec.js:327:8)

  3) Viewing application
       Changes availability visualization:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `select`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/observability-dashboards/7_app_analytics.spec.js:403:8)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        8                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      3                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  3                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     11 minutes, 24 seconds                                                           │
  │ Spec Ran:     plugins/observability-dashboards/7_app_analytics.spec.js                         │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/7_app_analytics.spec.js/Viewing application                
     -- Adds availability level to visualization #1 (failed).png                                    
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/7_app_analytics.spec.js/Viewing application                
     -- Saves visualization #2 to panel with availability level (failed).png                        
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/observability-dashboards/7_app_analytics.spec.js/Viewing application                
     -- Changes availability visualization (failed).png                                             


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  8%
    Compression progress:  16%
    Compression progress:  24%
    Compression progress:  32%
    Compression progress:  40%
    Compression progress:  47%
    Compression progress:  55%
    Compression progress:  63%
    Compression progress:  71%
    Compression progress:  79%
    Compression progress:  87%
    Compression progress:  95%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t (2 minutes, 1…
                          est/cypress/videos/plugins/observability-dashboards/7_app_a               
                          nalytics.spec.js.mp4                                                      

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/observability-dashboards/8_after.spec.js                              (39 of 54)


  After
    ✓ clean up complete


  1 passing (230ms)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     0 seconds                                                                        │
  │ Spec Ran:     plugins/observability-dashboards/8_after.spec.js                                 │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (0 seconds)
                          est/cypress/videos/plugins/observability-dashboards/8_after               
                          .spec.js.mp4                                                              


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/query-workbench-dashboards/ui.spec.js                                 (40 of 54)


  Dump test data
    ✓ Indexes test data for SQL and PPL

  Test PPL UI
    ✓ Confirm results are empty (15536ms)
    ✓ Test Run button (11392ms)
    ✓ Test Clear button (10164ms)
    ✓ Test full screen view (9585ms)

  Test SQL UI
    ✓ Confirm results are empty (5396ms)
    ✓ Test Run button and field search (9223ms)
    ✓ Test Translate button (10305ms)
    ✓ Test Clear button (5354ms)
    ✓ Test full screen view (5813ms)

  Test and verify SQL downloads
    ✓ Download and verify JSON
    ✓ Download and verify JDBC
    ✓ Download and verify CSV
    ✓ Download and verify Text

  Test table display
    ✓ Test GROUP BY (8968ms)
    ✓ Test GROUP BY with aliases and scalar function (8980ms)
    ✓ Test GROUP BY and HAVING (10711ms)
    ✓ Test ORDER BY (10738ms)
    ✓ Test JOIN (11892ms)
    ✓ Test nested fields display (10648ms)


  20 passing (2m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        20                                                                               │
  │ Passing:      20                                                                               │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 minutes, 28 seconds                                                            │
  │ Spec Ran:     plugins/query-workbench-dashboards/ui.spec.js                                    │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  36%
    Compression progress:  72%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (30 seconds)
                          est/cypress/videos/plugins/query-workbench-dashboards/ui.sp               
                          ec.js.mp4                                                                 

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/reports-dashboards/01-create.spec.js                                  (41 of 54)


  Cypress
    ✓ Visits Reporting homepage (60560ms)
    ✓ Visit Create page (6434ms)
    ✓ Create a new on-demand dashboard report definition (12495ms)
    ✓ Create a new on-demand visualization report definition (13223ms)
    ✓ Create a new on-demand saved search report definition (13162ms)
    ✓ Create a new dashboard daily recurring report definition (13358ms)
    ✓ Create a new visualization daily recurring report definition (11835ms)
    ✓ Create a new saved search daily recurring report definition (11056ms)
    ✓ Create a new dashboard interval recurring report definition (28931ms)
    ✓ Create a new visualization interval recurring report definition (29684ms)
    ✓ Create a new saved search interval recurring report definition (28588ms)
    ✓ Create a dashboard cron-based report definition (28842ms)
    ✓ Create a visualization cron-based report definition (27025ms)
    ✓ Create a saved search cron-based report definition (27858ms)


  14 passing (5m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        14                                                                               │
  │ Passing:      14                                                                               │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     5 minutes, 14 seconds                                                            │
  │ Spec Ran:     plugins/reports-dashboards/01-create.spec.js                                     │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  19%
    Compression progress:  37%
    Compression progress:  56%
    Compression progress:  73%
    Compression progress:  91%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t (1 minute, 0 …
                          est/cypress/videos/plugins/reports-dashboards/01-create.spe               
                          c.js.mp4                                                                  

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/reports-dashboards/02-edit.spec.js                                    (42 of 54)


  Cypress
    ✓ Visit edit page, update name and description (34642ms)
    1) Visit edit page, change report trigger
    2) Visit edit page, change report trigger back


  1 passing (4m)
  2 failing

  1) Cypress
       Visit edit page, change report trigger:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `#reportDefinitionDetailsLink`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/reports-dashboards/02-edit.spec.js:154:44)

  2) Cypress
       Visit edit page, change report trigger back:
     AssertionError: Timed out retrying after 60000ms: Expected to find element: `#reportDefinitionDetailsLink`, but never found it.
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/reports-dashboards/02-edit.spec.js:175:44)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        3                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      2                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  2                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     3 minutes, 32 seconds                                                            │
  │ Spec Ran:     plugins/reports-dashboards/02-edit.spec.js                                       │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/reports-dashboards/02-edit.spec.js/Cypress -- Visit edit page, change               
      report trigger (failed).png                                                                   
  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/reports-dashboards/02-edit.spec.js/Cypress -- Visit edit page, change               
      report trigger back (failed).png                                                              


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  42%
    Compression progress:  86%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (40 seconds)
                          est/cypress/videos/plugins/reports-dashboards/02-edit.spec.               
                          js.mp4                                                                    

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/reports-dashboards/03-details.spec.js                                 (43 of 54)


  Cypress
    ✓ Visit report definition details page (31141ms)
    ✓ Go to edit report definition from report definition details (16218ms)
    ✓ Verify report source URL on report definition details (31235ms)
    ✓ Delete report definition from details page (7297ms)
    ✓ Visit report details page (6029ms)
    ✓ Verify report source URL on report details (30999ms)


  6 passing (2m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        6                                                                                │
  │ Passing:      6                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     2 minutes, 3 seconds                                                             │
  │ Spec Ran:     plugins/reports-dashboards/03-details.spec.js                                    │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
    Compression progress:  56%
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (23 seconds)
                          est/cypress/videos/plugins/reports-dashboards/03-details.sp               
                          ec.js.mp4                                                                 

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/reports-dashboards/04-download.spec.js                                (44 of 54)


  Cypress
    ✓ Download from reporting homepage (14672ms)
    ✓ Download pdf from in-context menu (8895ms)
    ✓ Download png from in-context menu (7106ms)
    ✓ Download csv from saved search in-context menu (12370ms)
    ✓ Download from Report definition details page (31132ms)


  5 passing (1m)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        5                                                                                │
  │ Passing:      5                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     1 minute, 29 seconds                                                             │
  │ Spec Ran:     plugins/reports-dashboards/04-download.spec.js                                   │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (17 seconds)
                          est/cypress/videos/plugins/reports-dashboards/04-download.s               
                          pec.js.mp4                                                                

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/search-relevance-dashboards/1_query_compare.spec.js                   (45 of 54)


  Compare queries
    ✓ Should get comparison results (50563ms)


  1 passing (58s)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      1                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     57 seconds                                                                       │
  │ Spec Ran:     plugins/search-relevance-dashboards/1_query_compare.spec.js                      │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t   (11 seconds)
                          est/cypress/videos/plugins/search-relevance-dashboards/1_qu               
                          ery_compare.spec.js.mp4                                                   

    Compression progress:  100%

────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/security-analytics-dashboards-plugin/rules_spec.js                    (46 of 54)


  Rules
    Can be created
      1) manually using UI


  0 passing (18s)
  1 failing

  1) Rules
       Can be created
         manually using UI:
     CypressError: `cy.select()` can only be called on a `<select>`. Your subject is a: `<div aria-expanded="false" aria-haspopup="listbox" class="euiComboBox" data-test-subj="rule_type_dropdown" role="combobox">...</div>`

https://on.cypress.io/select
      at Context.select (http://localhost:5601/__cypress/runner/cypress_runner.js:153646:78)
      at Context.<anonymous> (http://localhost:5601/__cypress/runner/cypress_runner.js:173267:19)
  From Your Spec Code:
      at Context.eval (http://localhost:5601/__cypress/tests?p=cypress/integration/plugins/security-analytics-dashboards-plugin/rules_spec.js:138:90)




  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        1                                                                                │
  │ Passing:      0                                                                                │
  │ Failing:      1                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  1                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     17 seconds                                                                       │
  │ Spec Ran:     plugins/security-analytics-dashboards-plugin/rules_spec.js                       │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Screenshots)

  -  /local/home/suzhou/repos/opensearch-dashboards-functional-test/cypress/screensho     (1280x720)
     ts/plugins/security-analytics-dashboards-plugin/rules_spec.js/Rules -- Can be cr               
     eated -- manually using UI (failed).png                                                        


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (5 seconds)
                          est/cypress/videos/plugins/security-analytics-dashboards-pl               
                          ugin/rules_spec.js.mp4                                                    


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/security-dashboards-plugin/aggregation_view.js                        (47 of 54)


  0 passing (20ms)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        0                                                                                │
  │ Passing:      0                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     0 seconds                                                                        │
  │ Spec Ran:     plugins/security-dashboards-plugin/aggregation_view.js                           │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (0 seconds)
                          est/cypress/videos/plugins/security-dashboards-plugin/aggre               
                          gation_view.js.mp4                                                        


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/security/audit_log_spec.js                                            (48 of 54)


  0 passing (0ms)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        0                                                                                │
  │ Passing:      0                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     0 seconds                                                                        │
  │ Spec Ran:     plugins/security/audit_log_spec.js                                               │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (0 seconds)
                          est/cypress/videos/plugins/security/audit_log_spec.js.mp4                 


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/security/auth_spec.js                                                 (49 of 54)


  0 passing (0ms)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        0                                                                                │
  │ Passing:      0                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     0 seconds                                                                        │
  │ Spec Ran:     plugins/security/auth_spec.js                                                    │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (0 seconds)
                          est/cypress/videos/plugins/security/auth_spec.js.mp4                      


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/security/get_started_spec.js                                          (50 of 54)


  0 passing (0ms)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        0                                                                                │
  │ Passing:      0                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     0 seconds                                                                        │
  │ Spec Ran:     plugins/security/get_started_spec.js                                             │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (0 seconds)
                          est/cypress/videos/plugins/security/get_started_spec.js.mp4               


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/security/internalusers_spec.js                                        (51 of 54)


  0 passing (3ms)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        0                                                                                │
  │ Passing:      0                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     0 seconds                                                                        │
  │ Spec Ran:     plugins/security/internalusers_spec.js                                           │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (0 seconds)
                          est/cypress/videos/plugins/security/internalusers_spec.js.m               
                          p4                                                                        


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/security/permissions_spec.js                                          (52 of 54)


  0 passing (1ms)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        0                                                                                │
  │ Passing:      0                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     0 seconds                                                                        │
  │ Spec Ran:     plugins/security/permissions_spec.js                                             │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (0 seconds)
                          est/cypress/videos/plugins/security/permissions_spec.js.mp4               


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/security/roles_spec.js                                                (53 of 54)


  0 passing (18ms)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        0                                                                                │
  │ Passing:      0                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     0 seconds                                                                        │
  │ Spec Ran:     plugins/security/roles_spec.js                                                   │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (0 seconds)
                          est/cypress/videos/plugins/security/roles_spec.js.mp4                     


────────────────────────────────────────────────────────────────────────────────────────────────────
                                                                                                    
  Running:  plugins/security/tenants_spec.js                                              (54 of 54)


  0 passing (17ms)


  (Results)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Tests:        0                                                                                │
  │ Passing:      0                                                                                │
  │ Failing:      0                                                                                │
  │ Pending:      0                                                                                │
  │ Skipped:      0                                                                                │
  │ Screenshots:  0                                                                                │
  │ Video:        true                                                                             │
  │ Duration:     0 seconds                                                                        │
  │ Spec Ran:     plugins/security/tenants_spec.js                                                 │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘


  (Video)

  -  Started processing:  Compressing to 32 CRF                                                     
  -  Finished processing: /local/home/suzhou/repos/opensearch-dashboards-functional-t    (0 seconds)
                          est/cypress/videos/plugins/security/tenants_spec.js.mp4                   


================================================================================

  (Run Finished)


info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
       Spec                                              Tests  Passing  Failing  Pending  Skipped  
  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ ✖  plugins/alerting-dashboards-plugin/      00:30        3        -        1        -        2 │
  │    acknowledge_alerts_modal_spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      03:16        5        5        -        -        - │
  │    alert_spec.js                                                                               │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/alerting-dashboards-plugin/      02:30        2        1        1        -        - │
  │    alerts_dashboard_flyout_spec.js                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      04:07        3        3        -        -        - │
  │    bucket_level_monitor_spec.js                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/alerting-dashboards-plugin/      03:30        6        6        -        -        - │
  │    cluster_metrics_monitor_spec.js                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/alerting-dashboards-plugin/      05:56        7        5        2        -        - │
  │    query_level_monitor_spec.js                                                                 │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:45        1        1        -        -        - │
  │    s-plugin/create_detector_spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      01:12        8        8        -        -        - │
  │    s-plugin/dashboard_spec.js                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:38        5        5        -        -        - │
  │    s-plugin/detector_configuration_spe                                                         │
  │    c.js                                                                                        │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      01:24       11       11        -        -        - │
  │    s-plugin/detector_list_spec.js                                                              │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      02:01        6        6        -        -        - │
  │    s-plugin/historical_analysis_spec.j                                                         │
  │    s                                                                                           │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:36        4        4        -        -        - │
  │    s-plugin/overview_spec.js                                                                   │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      00:34        2        2        -        -        - │
  │    s-plugin/real_time_results_spec.js                                                          │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/anomaly-detection-dashboard      01:02        3        3        -        -        - │
  │    s-plugin/sample_detector_spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/custom-import-map-dashboard      02:26        2        2        -        -        - │
  │    s/documentsLayer.spec.js                                                                    │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/custom-import-map-dashboard      01:29        1        1        -        -        - │
  │    s/import_vector_map_tab.spec.js                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/custom-import-map-dashboard      02:02        1        1        -        -        - │
  │    s/opensearchMapLayer.spec.js                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/gantt-chart-dashboards/gant      03:32        9        9        -        -        - │
  │    t_ui.spec.js                                                                                │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      01:33        4        4        -        -        - │
  │    -plugin/aliases.js                                                                          │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      01:27        4        4        -        -        - │
  │    -plugin/create_index.js                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/index-management-dashboards      04:49        9        8        1        -        - │
  │    -plugin/indices_spec.js                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      03:03        5        5        -        -        - │
  │    -plugin/managed_indices_spec.js                                                             │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      02:11        5        5        -        -        - │
  │    -plugin/policies_spec.js                                                                    │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      02:49        3        3        -        -        - │
  │    -plugin/reindex_spec.js                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      03:09        4        4        -        -        - │
  │    -plugin/rollups_spec.js                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      01:39        5        5        -        -        - │
  │    -plugin/split_index.js                                                                      │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      01:26        3        3        -        -        - │
  │    -plugin/templates.js                                                                        │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/index-management-dashboards      02:29        4        4        -        -        - │
  │    -plugin/transforms_spec.js                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/notifications-dashboards/1_      03:10       11       10        1        -        - │
  │    email_senders_and_groups.spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/notifications-dashboards/2_      06:49       13       10        3        -        - │
  │    channels.spec.js                                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/0_      00:38        1        1        -        -        - │
  │    before.spec.js                                                                              │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/1_      04:08        8        8        -        -        - │
  │    trace_analytics_dashboard.spec.js                                                           │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/observability-dashboards/2_      03:28        7        6        1        -        - │
  │    trace_analytics_services.spec.js                                                            │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/observability-dashboards/3_      03:51        7        5        2        -        - │
  │    trace_analytics_traces.spec.js                                                              │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/observability-dashboards/4_      08:39       25       22        3        -        - │
  │    panels.spec.js                                                                              │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/observability-dashboards/5_      31:22       36       18       18        -        - │
  │    event_analytics.spec.js                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/observability-dashboards/6_      14:02       31       27        4        -        - │
  │    notebooks.spec.js                                                                           │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/observability-dashboards/7_      11:24        8        5        3        -        - │
  │    app_analytics.spec.js                                                                       │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/observability-dashboards/8_      216ms        1        1        -        -        - │
  │    after.spec.js                                                                               │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/query-workbench-dashboards/      02:28       20       20        -        -        - │
  │    ui.spec.js                                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/reports-dashboards/01-creat      05:14       14       14        -        -        - │
  │    e.spec.js                                                                                   │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/reports-dashboards/02-edit.      03:32        3        1        2        -        - │
  │    spec.js                                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/reports-dashboards/03-detai      02:03        6        6        -        -        - │
  │    ls.spec.js                                                                                  │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/reports-dashboards/04-downl      01:29        5        5        -        -        - │
  │    oad.spec.js                                                                                 │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/search-relevance-dashboards      00:57        1        1        -        -        - │
  │    /1_query_compare.spec.js                                                                    │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✖  plugins/security-analytics-dashboar      00:17        1        -        1        -        - │
  │    ds-plugin/rules_spec.js                                                                     │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security-dashboards-plugin/        2ms        -        -        -        -        - │
  │    aggregation_view.js                                                                         │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/audit_log_spec.js         5ms        -        -        -        -        - │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/auth_spec.js              5ms        -        -        -        -        - │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/get_started_spec.j        3ms        -        -        -        -        - │
  │    s                                                                                           │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/internalusers_spec        2ms        -        -        -        -        - │
  │    .js                                                                                         │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/permissions_spec.j        2ms        -        -        -        -        - │
  │    s                                                                                           │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/roles_spec.js             3ms        -        -        -        -        - │
  ├────────────────────────────────────────────────────────────────────────────────────────────────┤
  │ ✔  plugins/security/tenants_spec.js           3ms        -        -        -        -        - │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘
    ✖  14 of 54 failed (26%)                  2:46:00      323      278       43        -        2  

info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

@SuZhou-Joe
Copy link
Member Author

According to the log above, the cy.as() error has gone.

@peterzhuamazon
Copy link
Member

@SuZhou-Joe linting has issue it seems like.

@kavilla
Copy link
Member

kavilla commented Jan 18, 2023

According to the log above, the cy.as() error has gone.

Yeah just checked by removing the addAlias and the test passed. With this information do we still want to keep the snapshot test?

@kavilla
Copy link
Member

kavilla commented Jan 18, 2023

@SuZhou-Joe linting has issue it seems like.

Yeah seems like multiple files (not just the IM plugin tests having linting issues). Do you mind cleaning them up here?

@kavilla
Copy link
Member

kavilla commented Jan 18, 2023

Will some of the changes from the original PR and this PR make it into the main branch as well?

@peterzhuamazon
Copy link
Member

Will some of the changes from the original PR and this PR make it into the main branch as well?

I think this feature is only in 2.x branch right now, if I remember correctly as they start developing on 2.x not main, correct me if I am mistaken here.

Thanks.

@peterzhuamazon
Copy link
Member

@SuZhou-Joe linting has issue it seems like.

Yeah seems like multiple files (not just the IM plugin tests having linting issues). Do you mind cleaning them up here?

The lint checking seemed to be caused by SR plugin, not IM, seems in a previous PR didnt clean up.

@peterzhuamazon
Copy link
Member

According to the log above, the cy.as() error has gone.

Yeah just checked by removing the addAlias and the test passed. With this information do we still want to keep the snapshot test?

I think @SuZhou-Joe mentioned yesterday that he removed the snapshot test.

@peterzhuamazon peterzhuamazon merged commit 900c8b0 into opensearch-project:2.x Jan 18, 2023
opensearch-trigger-bot bot pushed a commit that referenced this pull request Jan 18, 2023
* feat: remove snapshot spec and update commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: make actions to run again

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: change to addIndexAlias & removeIndexAlias

Signed-off-by: suzhou <suzhou@amazon.com>

Signed-off-by: suzhou <suzhou@amazon.com>
(cherry picked from commit 900c8b0)
@peterzhuamazon
Copy link
Member

Related to opensearch-project/opensearch-build#2908

peterzhuamazon pushed a commit that referenced this pull request Jan 18, 2023
* feat: remove snapshot spec and update commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: make actions to run again

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: change to addIndexAlias & removeIndexAlias

Signed-off-by: suzhou <suzhou@amazon.com>

Signed-off-by: suzhou <suzhou@amazon.com>
(cherry picked from commit 900c8b0)

Co-authored-by: suzhou <suzhou@amazon.com>
SuZhou-Joe added a commit to SuZhou-Joe/opensearch-dashboards-functional-test that referenced this pull request Feb 11, 2023
…#450)

* feat: remove snapshot spec and update commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: make actions to run again

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: change to addIndexAlias & removeIndexAlias

Signed-off-by: suzhou <suzhou@amazon.com>

Signed-off-by: suzhou <suzhou@amazon.com>
SuZhou-Joe added a commit that referenced this pull request Feb 15, 2023
* feat: add function test for IM plugin on v2.5

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove some useless test case

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec and duplicate commands (#450)

* feat: remove snapshot spec and update commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: make actions to run again

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: change to addIndexAlias & removeIndexAlias

Signed-off-by: suzhou <suzhou@amazon.com>

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: lint

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: fix workflow bug

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: use 2.5.0 version

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: revert version to 3.0.0

Signed-off-by: suzhou <suzhou@amazon.com>

---------

Signed-off-by: suzhou <suzhou@amazon.com>
SuZhou-Joe added a commit to SuZhou-Joe/opensearch-dashboards-functional-test that referenced this pull request Feb 16, 2023
* feat: add function test for IM plugin on v2.5

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove some useless test case

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec and duplicate commands (opensearch-project#450)

* feat: remove snapshot spec and update commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: make actions to run again

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: change to addIndexAlias & removeIndexAlias

Signed-off-by: suzhou <suzhou@amazon.com>

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: lint

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: fix workflow bug

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: use 2.5.0 version

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: revert version to 3.0.0

Signed-off-by: suzhou <suzhou@amazon.com>

---------

Signed-off-by: suzhou <suzhou@amazon.com>
(cherry picked from commit 95edebc)
SuZhou-Joe added a commit to SuZhou-Joe/opensearch-dashboards-functional-test that referenced this pull request Feb 16, 2023
* feat: add function test for IM plugin on v2.5

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove some useless test case

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec and duplicate commands (opensearch-project#450)

* feat: remove snapshot spec and update commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: make actions to run again

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: change to addIndexAlias & removeIndexAlias

Signed-off-by: suzhou <suzhou@amazon.com>

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: lint

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: fix workflow bug

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: use 2.5.0 version

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: revert version to 3.0.0

Signed-off-by: suzhou <suzhou@amazon.com>

---------

Signed-off-by: suzhou <suzhou@amazon.com>
(cherry picked from commit 95edebc)
CCongWang pushed a commit that referenced this pull request Feb 16, 2023
* feat: add function test for IM plugin on v2.5

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove some useless test case

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec and duplicate commands (#450)

* feat: remove snapshot spec and update commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: make actions to run again

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: change to addIndexAlias & removeIndexAlias

Signed-off-by: suzhou <suzhou@amazon.com>

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: lint

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: fix workflow bug

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: use 2.5.0 version

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: revert version to 3.0.0

Signed-off-by: suzhou <suzhou@amazon.com>

---------

Signed-off-by: suzhou <suzhou@amazon.com>
(cherry picked from commit 95edebc)
CCongWang pushed a commit that referenced this pull request Feb 16, 2023
* feat: add function test for IM plugin on v2.5

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove some useless test case

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec and duplicate commands (#450)

* feat: remove snapshot spec and update commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: make actions to run again

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: change to addIndexAlias & removeIndexAlias

Signed-off-by: suzhou <suzhou@amazon.com>

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: lint

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: fix workflow bug

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: use 2.5.0 version

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: revert version to 3.0.0

Signed-off-by: suzhou <suzhou@amazon.com>

---------

Signed-off-by: suzhou <suzhou@amazon.com>
(cherry picked from commit 95edebc)
sebastianmichalski pushed a commit to sebastianmichalski/opensearch-dashboards-functional-test that referenced this pull request Mar 24, 2023
…#450)

* feat: remove snapshot spec and update commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: make actions to run again

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: change to addIndexAlias & removeIndexAlias

Signed-off-by: suzhou <suzhou@amazon.com>

Signed-off-by: suzhou <suzhou@amazon.com>
sebastianmichalski added a commit to sebastianmichalski/opensearch-dashboards-functional-test that referenced this pull request Mar 24, 2023
jakubp-eliatra pushed a commit to sebastianmichalski/opensearch-dashboards-functional-test that referenced this pull request Mar 24, 2023
* feat: add function test for IM plugin on v2.5

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove some useless test case

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec and duplicate commands (opensearch-project#450)

* feat: remove snapshot spec and update commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: make actions to run again

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: change to addIndexAlias & removeIndexAlias

Signed-off-by: suzhou <suzhou@amazon.com>

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: lint

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: fix workflow bug

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: use 2.5.0 version

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: revert version to 3.0.0

Signed-off-by: suzhou <suzhou@amazon.com>

---------

Signed-off-by: suzhou <suzhou@amazon.com>
Signed-off-by: Jakub Przybylski <jakub.przybylski@eliatra.com>
leanneeliatra pushed a commit to leanneeliatra/opensearch-dashboards-functional-test-fork that referenced this pull request Sep 15, 2023
…#450)

* feat: remove snapshot spec and update commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: make actions to run again

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: change to addIndexAlias & removeIndexAlias

Signed-off-by: suzhou <suzhou@amazon.com>

Signed-off-by: suzhou <suzhou@amazon.com>
Signed-off-by: leanne.laceybyrne@eliatra.com <leanne.laceybyrne@eliatra.com>
leanneeliatra pushed a commit to leanneeliatra/opensearch-dashboards-functional-test-fork that referenced this pull request Sep 15, 2023
…earch-project#536)

* feat: add function test for IM plugin on v2.5

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove duplicate commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove some useless test case

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: remove snapshot_spec and duplicate commands (opensearch-project#450)

* feat: remove snapshot spec and update commands

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: make actions to run again

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: change to addIndexAlias & removeIndexAlias

Signed-off-by: suzhou <suzhou@amazon.com>

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: lint

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: fix workflow bug

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: use 2.5.0 version

Signed-off-by: suzhou <suzhou@amazon.com>

* feat: revert version to 3.0.0

Signed-off-by: suzhou <suzhou@amazon.com>

---------

Signed-off-by: suzhou <suzhou@amazon.com>
(cherry picked from commit 95edebc)
Signed-off-by: leanne.laceybyrne@eliatra.com <leanne.laceybyrne@eliatra.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants