2015-12-30 20:15:01 +01:00
|
|
|
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
|
|
description: Resolving with a non-object value
|
|
|
|
es6id: 25.4.4.5
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2015-12-30 20:15:01 +01:00
|
|
|
[...]
|
|
|
|
6. Let resolveResult be Call(promiseCapability.[[Resolve]], undefined,
|
|
|
|
«x»).
|
|
|
|
[...]
|
|
|
|
|
|
|
|
25.4.1.3.2 Promise Resolve Functions
|
|
|
|
[...]
|
|
|
|
7. If Type(resolution) is not Object, then
|
|
|
|
a. Return FulfillPromise(promise, resolution).
|
2016-02-12 18:59:51 +01:00
|
|
|
flags: [async]
|
2015-12-30 20:15:01 +01:00
|
|
|
---*/
|
|
|
|
|
|
|
|
Promise.resolve(23).then(function(value) {
|
2018-02-09 18:09:47 +01:00
|
|
|
if (value !== 23) {
|
|
|
|
$DONE('The promise should be fulfilled with the provided value.');
|
|
|
|
return;
|
|
|
|
}
|
2015-12-30 20:15:01 +01:00
|
|
|
|
2018-02-09 18:09:47 +01:00
|
|
|
$DONE();
|
|
|
|
}, function() {
|
|
|
|
$DONE('The promise should not be rejected.');
|
|
|
|
});
|