Hello,
Whats the best approach on organizing my tests. For instance I have test files : Account-Creation.JS, User-Creation.JS, User-Assertions.Js etc etc etc.
How do I reuse these tests on a different suite. For example ;
Suite 1 : Account-Creation.JS, User-Creation.JS.
Suite 2 : User-Creation.JS, User-Assertion.JS
Right now , I have to do everything manually where I run the fixtures individually and in the order I need to be.
Is there anyway I can write another js file where I can call the different test files and just run that MAIN test file?