You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem?
Bumping the version of OpenSearch-Dashboards used by the alerting-dashboards-plugin to run unit tests from 1.3 to 2.0 caused the following 4 unit tests to start failing:
DelayedLoader.test.jsshould set Timer for 1 seconds if initial loading is true
DelayedLoader.test.jsshould clear Timer on componentWillUnmount if exists
DelayedLoader.test.jsshould not show loader if data fetching is finished before threshold
WhereExpression.test.jscalls closeExpression when closing popover: This test examines the behavior of closing an EuiPopover component. OSD 2.0 bumped the version of EUI used by the plugins from 29.3.2 to 34.6.0. The changelog mentions that changes were made to the functionality of EuiPopover, and this PR describes changes that relate to handling escaping from a popover which impacted this test. This change seems to impact the way this component behaves when testing using enzymejs.
What solution would you like?
The alerting-dashboards-plugin should likely migrate away from using enzymejs to align with the other frontend plugins.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
Bumping the version of
OpenSearch-Dashboards
used by thealerting-dashboards-plugin
to run unit tests from1.3
to2.0
caused the following 4 unit tests to start failing:DelayedLoader.test.js
should set Timer for 1 seconds if initial loading is true
DelayedLoader.test.js
should clear Timer on componentWillUnmount if exists
DelayedLoader.test.js
should not show loader if data fetching is finished before threshold
WhereExpression.test.js
calls closeExpression when closing popover
: This test examines the behavior of closing anEuiPopover
component. OSD 2.0 bumped the version of EUI used by the plugins from29.3.2
to34.6.0
. The changelog mentions that changes were made to the functionality ofEuiPopover
, and this PR describes changes that relate to handling escaping from a popover which impacted this test. This change seems to impact the way this component behaves when testing usingenzymejs
.What solution would you like?
The
alerting-dashboards-plugin
should likely migrate away from usingenzymejs
to align with the other frontend plugins.The text was updated successfully, but these errors were encountered: