I have a test suite which uses wallaby
library which needs a heavyweight webpack build for usage. The problem is that I this webpack build is too heavy to use it before only model test, for example.
So, I decided about this feature:
- Tag all wallaby tests with some tag, ie:
@tag :wallaby
- Check if there is at least one tagged by wallaby test exists for running test suite
- If so, wait for the build and then run the whole test suite.
Is it the best design? How can I implement it?