41 lines
1.1 KiB
TypeScript
41 lines
1.1 KiB
TypeScript
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Licensed under the MIT license.
|
|
|
|
import * as glob from "glob";
|
|
import * as Mocha from "mocha";
|
|
import * as path from "path";
|
|
|
|
export function run(): Promise<void> {
|
|
// Create the mocha test
|
|
const mocha = new Mocha({
|
|
ui: "tdd",
|
|
});
|
|
mocha.useColors(true);
|
|
|
|
const testsRoot = path.resolve(__dirname, "..");
|
|
|
|
return new Promise((c, e) => {
|
|
glob("**/**.test.js", { cwd: testsRoot }, (err, files) => {
|
|
if (err) {
|
|
return e(err);
|
|
}
|
|
|
|
// Add files to the test suite
|
|
files.forEach((f) => mocha.addFile(path.resolve(testsRoot, f)));
|
|
|
|
try {
|
|
// Run the mocha test
|
|
mocha.run((failures) => {
|
|
if (failures > 0) {
|
|
e(new Error(`${failures} tests failed.`));
|
|
} else {
|
|
c();
|
|
}
|
|
});
|
|
} catch (err) {
|
|
e(err);
|
|
}
|
|
});
|
|
});
|
|
}
|