Adding definition of mocha.throwError, with test to cover it.

See implementation in Mocha's source code here:
c4393c4568/support/browser-entry.js (L98)
This commit is contained in:
John Vilk
2015-10-15 16:03:27 -04:00
parent 3a6e1b8988
commit ff9d48a659
2 changed files with 10 additions and 0 deletions

View File

@@ -249,3 +249,7 @@ function test_run_withOnComplete() {
console.log(failures);
});
}
function test_throwError() {
mocha.throwError(new Error("I'm an error!"));
}

6
mocha/mocha.d.ts vendored
View File

@@ -100,6 +100,12 @@ declare class Mocha {
invert(): Mocha;
ignoreLeaks(value: boolean): Mocha;
checkLeaks(): Mocha;
/**
* Function to allow assertion libraries to throw errors directly into mocha.
* This is useful when running tests in a browser because window.onerror will
* only receive the 'message' attribute of the Error.
*/
throwError(error: Error): void;
/** Enables growl support. */
growl(): Mocha;
globals(value: string): Mocha;