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.

AbstractTestHint.js 575B

1234567891011121314151617181920212223
  1. /* @flow */
  2. /**
  3. * Describes the {@link TestHint}'s properties.
  4. *
  5. * A test hint is meant to resemble the lack of the ability to execute
  6. * JavaScript by the mobile torture tests. They are used to expose some of
  7. * the app's internal state that is not always expressed in a feasible manner by
  8. * the UI.
  9. */
  10. export type TestHintProps = {
  11. /**
  12. * The test hint's identifier string. Must be unique in the app instance
  13. * scope.
  14. */
  15. id: string,
  16. /**
  17. * The test hint's (text) value which is to be consumed by the tests.
  18. */
  19. value: string
  20. }