We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c9107d commit cbb2ac5Copy full SHA for cbb2ac5
src/__tests__/RadioGroup.spec.js
@@ -2,6 +2,7 @@ import expect from 'expect'
2
import expectJsx from 'expect-jsx'
3
import { RadioGroup } from 'material-ui/Radio'
4
import React from 'react'
5
+import noop from 'lodash.noop'
6
import TestUtils from 'react-dom/test-utils'
7
import ReduxFormMaterialUIRadioGroup from '../RadioGroup'
8
@@ -19,13 +20,15 @@ describe('RadioGroup', () => {
19
20
new ReduxFormMaterialUIRadioGroup({
21
input: {
22
name: 'myRadio',
- value: 'Foo'
23
+ value: 'Foo',
24
+ onChange:{noop}
25
}
26
}).render()
27
).toEqualJSX(
28
<RadioGroup
29
name="myRadio"
30
value="Foo"
31
+ onChange={noop}
32
ref={() => {}}
33
/>
34
)
0 commit comments