Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1 KB

TESTING.md

File metadata and controls

22 lines (18 loc) · 1 KB

Testing

Test user accounts

The app should connect to the VA "staging" environment. Lists of test user accounts can be found here and here

Testing standards

  • use unit tests to increase confidence in small(er) sections of code
  • use automation tests to exercise the flow of specific use cases
  • plan for tests to be run during CI/CD - keep them quick

Accessibility standards

  • every screen must meet accessibility standards. plan to test these aspects:
    • dynamic text sizing
    • inversion of colors
    • sensical experience wile using VoiceOver / TalkBack
    • dark mode, if available on the device
    • detailed accessibility specifications TBD

Security standards

  • cautiously store data on-device
  • be aware of what data is being sent off-device
  • more standards TBD