1
0
mirror of https://github.com/yldio/copilot.git synced 2024-09-21 05:43:52 +03:00

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);
});