| // 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 |
| 6. Let resolveResult be Call(promiseCapability.[[Resolve]], undefined, |
| 25.4.1.3.2 Promise Resolve Functions |
| 7. If Type(resolution) is not Object, then |
| a. Return FulfillPromise(promise, resolution). |
| Promise.resolve(23).then(function(value) { |
| $DONE('The promise should be fulfilled with the provided value.'); |
| $DONE('The promise should not be rejected.'); |