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

Allow min and max to have same value #114

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bad indent
  • Loading branch information
jhblacklock committed Jan 5, 2018
commit 08e9afbfe98f709bd3111aa3b2a82357365eff27
4 changes: 2 additions & 2 deletions test/input-range/input-range.spec.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ describe('InputRange', () => {
minValue={0}
value={{ min: 2, max: 10 }}
onChange={value => component.setProps({ value })}
/>
/>
);
const component = mount(jsx, { attachTo: container });
const minSlider = component.find(`Slider [onMouseDown]`).at(0);
Expand All @@ -284,7 +284,7 @@ describe('InputRange', () => {
minValue={0}
value={{ min: 2, max: 10 }}
onChange={value => component.setProps({ value })}
/>
/>
);
const component = mount(jsx, { attachTo: container });
const minSlider = component.find(`Slider [onMouseDown]`).at(0);
Expand Down