DEV Community

Discussion on: How do you test a design system?

Collapse
 
elbricksalazar profile image
Elbrick Salazar

Everything that affects the visual part is basically tested with:

  • SnapShots (JEST for example)
  • Regression Testing (JEST / StoryBook for example)
  • Tools such as Selenium that simulate navigation and record the journey (coursera.org/projects/waits-in-sel...)

Regards