Other documents:

📔 Getting Started 💡 Create components 📣 Modify component 📂 Deploy components 📝 Document component

Consideration

Aqua only need Unit Testing because a difference to the other projects, only it’s necessary verify the performance and behavior of each component in a the individual way. Therefore Aqua only provides a serie of test that which offer a guide to test correctly each component and the interaction flow of how this variants.


Let started

Each set of test has been located according to the type/group of the component corresponding the path: tests/unit/[group/type]/[ComponentName.vue]

Example, The formulary elements belongs to the ‘forms group/type’, the component location must be:

tests/unit/*forms/TextField.vue*

Untitled

IMPORTANT: All the testings must be respect the good practices of the testing on which the development teams rely. If the developer have any questions about how to test with this guidelines Go to Testing investigation to know more

Each Test must be have a serie of test cases that comprobes the fundamental behavior of the component, i.e., keep in mind the interaction flow of the component, how the developer will use the component, and garantize the variants of the component.

At the moment of add the test’s important to consider doesn’t affect the other test cases that alreadys success.

Untitled