(value)
| 1297 | it("should support using format/parse with checkbox controls", () => { |
| 1298 | const format = (value) => value && value.map((x) => x.toString()); |
| 1299 | const parse = (value) => value && value.map((x) => parseInt(x, 10)); |
| 1300 | |
| 1301 | const { getByTestId } = render( |
| 1302 | <Form onSubmit={onSubmitMock} initialValues={{ number: [20, 30] }}> |
no outgoing calls
no test coverage detected
searching dependent graphs…