We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a5b72bf + 4915387 commit f54b118Copy full SHA for f54b118
1 file changed
packages/pluggableWidgets/range-slider-native/src/__tests__/RangeSlider.spec.tsx
@@ -134,11 +134,6 @@ describe("RangeSlider", () => {
134
expect(component.getAllByText("Invalid")).toHaveLength(2);
135
});
136
137
- it.skip("handles an invalid step size", () => {
138
- const component = render(<RangeSlider {...defaultProps} stepSize={dynamicValue(new Big(-10))} />);
139
- expect(component.getByTestId("range-slider-test").findByProps({ step: 1 })).not.toBeNull();
140
- });
141
-
142
it("changes the lower value when swiping", () => {
143
const onChangeAction = actionValue();
144
const component = render(<RangeSlider {...defaultProps} onChange={onChangeAction} />);
0 commit comments