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.

AzureForm-test.tsx.snap 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`should render correctly 1`] = `
  3. <Fragment>
  4. <AlmBindingDefinitionFormField
  5. autoFocus={true}
  6. help="settings.almintegration.form.name.azure.help"
  7. id="name.azure"
  8. onFieldChange={[MockFunction]}
  9. propKey="key"
  10. value=""
  11. />
  12. <AlmBindingDefinitionFormField
  13. help="settings.almintegration.form.personal_access_token.azure.help"
  14. id="personal_access_token"
  15. isTextArea={true}
  16. onFieldChange={[MockFunction]}
  17. propKey="personalAccessToken"
  18. value=""
  19. />
  20. </Fragment>
  21. `;
  22. exports[`should render correctly 2`] = `
  23. <Fragment>
  24. <AlmBindingDefinitionFormField
  25. autoFocus={true}
  26. help="settings.almintegration.form.name.azure.help"
  27. id="name.azure"
  28. onFieldChange={[MockFunction]}
  29. propKey="key"
  30. value="key"
  31. />
  32. <AlmBindingDefinitionFormField
  33. help="settings.almintegration.form.personal_access_token.azure.help"
  34. id="personal_access_token"
  35. isTextArea={true}
  36. onFieldChange={[MockFunction]}
  37. propKey="personalAccessToken"
  38. value="asdf1234"
  39. />
  40. </Fragment>
  41. `;