Adds data-cy attributes to elements in all .vue files, which makes it easier to find and select those elements when writing tests with Cypress. The reasoning for using a specialized data-cy attribute is explained in their documentation.
I didn't add this attribute to every single HTML element, but did add them to most, with a focus on adding them to elements you might be looking for while testing.
Closes #44
Adds
data-cy
attributes to elements in all.vue
files, which makes it easier to find and select those elements when writing tests with Cypress. The reasoning for using a specializeddata-cy
attribute is explained in their documentation.I didn't add this attribute to every single HTML element, but did add them to most, with a focus on adding them to elements you might be looking for while testing.