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.

SearchBox-test.tsx.snap 662B

12345678910111213141516171819202122232425262728293031323334353637
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`renders 1`] = `
  3. <div
  4. className="search-box"
  5. title=""
  6. >
  7. <input
  8. aria-label="search_verb"
  9. autoComplete="off"
  10. className="search-box-input"
  11. maxLength={150}
  12. onChange={[Function]}
  13. onKeyDown={[Function]}
  14. placeholder="placeholder"
  15. type="search"
  16. value="foo"
  17. />
  18. <DeferredSpinner
  19. loading={false}
  20. >
  21. <SearchIcon
  22. className="search-box-magnifier"
  23. />
  24. </DeferredSpinner>
  25. <ClearButton
  26. aria-label="clear"
  27. className="button-tiny search-box-clear"
  28. iconProps={
  29. Object {
  30. "size": 12,
  31. }
  32. }
  33. onClick={[Function]}
  34. />
  35. </div>
  36. `;