You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ValidationForm-test.tsx.snap 342B

12345678910111213141516171819
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`should render and submit 1`] = `
  3. <Formik
  4. enableReinitialize={false}
  5. initialValues={
  6. Object {
  7. "foo": "bar",
  8. }
  9. }
  10. isInitialValid={false}
  11. onSubmit={[Function]}
  12. validate={[MockFunction]}
  13. validateOnBlur={true}
  14. validateOnChange={true}
  15. >
  16. <Component />
  17. </Formik>
  18. `;