summaryrefslogtreecommitdiff
path: root/test/built-ins/Promise/prototype/then/prfm-pending-fulfulled.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/built-ins/Promise/prototype/then/prfm-pending-fulfulled.js')
-rw-r--r--test/built-ins/Promise/prototype/then/prfm-pending-fulfulled.js20
1 files changed, 11 insertions, 9 deletions
diff --git a/test/built-ins/Promise/prototype/then/prfm-pending-fulfulled.js b/test/built-ins/Promise/prototype/then/prfm-pending-fulfulled.js
index 64c3542a4..b0251ddfe 100644
--- a/test/built-ins/Promise/prototype/then/prfm-pending-fulfulled.js
+++ b/test/built-ins/Promise/prototype/then/prfm-pending-fulfulled.js
@@ -21,16 +21,18 @@ flags: [async]
var value = {};
var resolve;
-var p = new Promise(function(_resolve) { resolve = _resolve; });
+var p = new Promise(function(_resolve) {
+ resolve = _resolve;
+});
p.then(function(x) {
- if (x !== value) {
- $DONE('The `onFulfilled` handler should be invoked with the promise result.');
- return;
- }
- $DONE();
- }, function() {
- $DONE('The `onRejected` handler should not be invoked.');
- });
+ if (x !== value) {
+ $DONE('The `onFulfilled` handler should be invoked with the promise result.');
+ return;
+ }
+ $DONE();
+}, function() {
+ $DONE('The `onRejected` handler should not be invoked.');
+});
resolve(value);