mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Merge pull request #6311 from jvilk/mocha-fixes
[mocha] Adding definition of mocha.throwError, with test to cover it.
This commit is contained in:
@@ -249,3 +249,7 @@ function test_run_withOnComplete() {
|
||||
console.log(failures);
|
||||
});
|
||||
}
|
||||
|
||||
function test_throwError() {
|
||||
mocha.throwError(new Error("I'm an error!"));
|
||||
}
|
||||
|
||||
Vendored
+6
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user