I have two javascript files which contain mocha test cases.
//----------abc.js ------------- describe(\"abc file\", function(){ it(\"test 1\" , function(
In the second file, require the first one:
--- two.js --- require("./one")
Mocha will run the tests in the order the describe calls execute.
describe