Range Slider - adding in test

This commit is contained in:
Alex Windett 2016-10-31 17:27:32 +00:00
parent 372fd02151
commit e1542996e9

View File

@ -95,3 +95,9 @@ test('renders <Input> without exploding', (t) => {
const wrapper = shallow(<Input />);
t.deepEqual(wrapper.length, 1);
});
test('renders <RangeSlider> without exploding', (t) => {
const Input = require('../src/components/range-slider');
const wrapper = shallow(<Input />);
t.deepEqual(wrapper.length, 1);
});