aboutsummaryrefslogtreecommitdiff
path: root/test/js/promise_finally_throw_catch.t.js
blob: 2d5ae3dc8b9eeb4515f4eb9c0ba1def8fdd9aeaf (plain)
1
2
3
4
5
6
7
8
9
/*---
includes: []
flags: [async]
---*/

Promise.resolve()
.finally(() => {nonExsistingInFinally()})
.catch(e => {})
.then($DONE, $DONE);