diff options
Diffstat (limited to 'js/src/tests/non262/async-functions/identity.js')
-rw-r--r-- | js/src/tests/non262/async-functions/identity.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/tests/non262/async-functions/identity.js b/js/src/tests/non262/async-functions/identity.js new file mode 100644 index 0000000000..f3876bf233 --- /dev/null +++ b/js/src/tests/non262/async-functions/identity.js @@ -0,0 +1,14 @@ +// |reftest| skip-if(!xulRuntime.shell) -- needs drainJobQueue + +var BUGNUMBER = 1185106; +var summary = "Named async function expression should get wrapped function for the name inside it"; + +print(BUGNUMBER + ": " + summary); + +var expr = async function foo() { + return foo; +}; +assertEventuallyEq(expr(), expr); + +if (typeof reportCompare === "function") + reportCompare(true, true); |