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.

ValidationModal-test.tsx.snap 378B

123456789101112131415161718192021
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`should render correctly 1`] = `
  3. <Modal
  4. contentLabel="title"
  5. onRequestClose={[MockFunction]}
  6. >
  7. <ValidationForm
  8. initialValues={
  9. Object {
  10. "field": "foo",
  11. }
  12. }
  13. isInitialValid={true}
  14. onSubmit={[Function]}
  15. validate={[MockFunction]}
  16. >
  17. <Component />
  18. </ValidationForm>
  19. </Modal>
  20. `;