test262/test/language/expressions/await/await-throws-rejections.js
Mike Pennisi a6834093aa Improve coverage by invoking functions as intended
Some tests which include function declarations designed to verify
behavior do not reference those functions. Insert the references
necessary for those functions to serve their intended purpose.
2021-10-05 16:22:56 -04:00

26 lines
497 B
JavaScript

// Copyright 2016 Microsoft, Inc. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Brian Terlson <brian.terlson@microsoft.com>
esid: pending
description: >
Await throws errors from rejected promises
flags: [async]
---*/
async function foo() {
var err = {};
var caught = false;
try {
await Promise.reject(err);
} catch(e) {
caught = true;
assert.sameValue(e, err);
}
assert(caught);
}
foo().then($DONE, $DONE);