From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../harness/asyncHelpers-asyncTest-then-rejects.js | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 js/src/tests/test262/harness/asyncHelpers-asyncTest-then-rejects.js (limited to 'js/src/tests/test262/harness/asyncHelpers-asyncTest-then-rejects.js') diff --git a/js/src/tests/test262/harness/asyncHelpers-asyncTest-then-rejects.js b/js/src/tests/test262/harness/asyncHelpers-asyncTest-then-rejects.js new file mode 100644 index 0000000000..6b20dfb2c2 --- /dev/null +++ b/js/src/tests/test262/harness/asyncHelpers-asyncTest-then-rejects.js @@ -0,0 +1,49 @@ +// |reftest| async +// Copyright (C) 2022 Igalia, S.L. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. +/*--- +description: | + The 'asyncTest' helper calls $DONE with the rejection value if the test function rejects. +flags: [async] +includes: [asyncHelpers.js, compareArray.js] +---*/ +const rejectionValues = []; +var realDone = $DONE; +globalThis.$DONE = function (mustBeDefined) { + rejectionValues.push(mustBeDefined); +}; +const someObject = {}; + +(async function () { + asyncTest(function () { + return Promise.reject(null); + }); +})() + .then(() => { + asyncTest(function () { + return Promise.reject(someObject); + }); + }) + .then(() => { + asyncTest(function () { + return Promise.reject("hi"); + }); + }) + .then(() => { + asyncTest(function () { + return Promise.reject(10); + }); + }) + .then(() => { + asyncTest(function () { + return { + then(res, rej) { + rej(true); + }, + }; + }); + }) + .then(() => { + assert.compareArray(rejectionValues, [null, someObject, "hi", 10, true]); + }) + .then(realDone, realDone); -- cgit v1.2.3