Software, script or a tool to automate managing which tests to run

Posted by laggingreflex on Programmers See other posts from Programmers or by laggingreflex
Published on 2014-06-01T21:04:57Z Indexed on 2014/06/02 15:57 UTC
Read the original article Hit count: 254

I have a batch file that lists all the test files I have and asks me which test I want to perform, like

Test. [U]nit, [I]ntegration : i (user input)
Integration. [A]ll, [2][U]serInteraction, [3][R]esultGeneration : u
2 User Interaction.

Running "mocha integration\2userint.js" ...

So essentially I have configured a batch "option" for each test file I have, which I can choose to run individually or all together.

But adding and removing tests is a pain. I have to update the batch file everytime a new file is added or changed.

Is there a software, script or a tool, that does this automatically, or makes it easier for me to do so?

I basically need it to be aware of and ask me which file(s) I want to test. A GUI with checkboxes would be ultimate! but I'll take anything.

I'm working in node.js

© Programmers or respective owner

Related posts about testing

Related posts about node.js