redux-devtools/packages/devui/tests/__snapshots__/Slider.test.js.snap
Nathan Bierema 9be6641d68
chore(devui): upgrade react-select (#628)
* upgrade react-select

* changes

* work

* stash

* Fix

* fix test
2020-09-04 00:10:24 -04:00

34 lines
429 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Slider renders correctly 1`] = `
<div
class="sc-AxheI ikoHwk"
>
<input
max="100"
min="0"
type="range"
value="0"
/>
</div>
`;
exports[`Slider renders with props 1`] = `
<div
class="sc-AxheI bySZMR"
disabled=""
>
<label>
Hi
</label>
<input
disabled=""
max="10"
min="1"
step="1"
type="range"
value="5"
/>
</div>
`;