harness/asyncHelpers.js: Refactor assert.throwsAsync to only accept a callable

This commit is contained in:
Cam Tenny 2022-12-05 15:21:05 -08:00 committed by Philip Chimento
parent 4bd0545b29
commit d810c684ae
3 changed files with 12 additions and 18 deletions

View File

@ -34,20 +34,16 @@ function asyncTest(testFunc) {
}
}
assert.throwsAsync = async function (
expectedErrorConstructor,
funcOrThenable,
message
) {
assert.throwsAsync = async function (expectedErrorConstructor, func, message) {
var innerThenable;
if (message === undefined) {
message = "";
} else {
message += " ";
}
if (typeof funcOrThenable === "function") {
if (typeof func === "function") {
try {
innerThenable = funcOrThenable();
innerThenable = func();
if (
innerThenable === null ||
typeof innerThenable !== "object" ||
@ -66,16 +62,10 @@ assert.throwsAsync = async function (
" to be thrown asynchronously but an exception was thrown synchronously while obtaining the inner promise";
throw new Test262Error(message);
}
} else if (
funcOrThenable === null ||
typeof funcOrThenable !== "object" ||
typeof funcOrThenable.then !== "function"
) {
message +=
"assert.throwsAsync called with an argument that is neither a function nor a thenable";
throw new Test262Error(message);
} else {
innerThenable = funcOrThenable;
message +=
"assert.throwsAsync called with an argument that is not a function";
throw new Test262Error(message);
}
try {

View File

@ -11,7 +11,9 @@ includes: [asyncHelpers.js]
function MyError() {}
(async function () {
const p = assert.throwsAsync(MyError, Promise.reject(new MyError()));
const p = assert.throwsAsync(MyError, function () {
return Promise.reject(new MyError());
});
assert(p instanceof Promise);
await p;
})().then($DONE, $DONE);

View File

@ -11,7 +11,9 @@ includes: [asyncHelpers.js]
(async function () {
var caught = false;
const p = assert.throwsAsync(Error, Promise.reject(new TypeError()));
const p = assert.throwsAsync(Error, function () {
return Promise.reject(new TypeError());
});
assert(p instanceof Promise);
try {
await p;