diff --git a/test/suites/index.ts b/test/suites/index.ts index de7034035..7b4df13d0 100644 --- a/test/suites/index.ts +++ b/test/suites/index.ts @@ -14,6 +14,7 @@ export function run(): Promise { return new Promise((resolve, reject) => { try { glob.sync('**/**.test.js', { cwd: __dirname }) + .sort() .forEach(f => mocha.addFile(path.resolve(__dirname, f))) // Run the mocha test mocha.run(failures => {