mirror of https://github.com/tc39/test262.git
25 lines
615 B
JavaScript
25 lines
615 B
JavaScript
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
|
|
// See LICENSE for details.
|
|
|
|
/*---
|
|
es6id: S25.4.4.5_A2.2_T1
|
|
author: Sam Mikes
|
|
description: Promise.resolve passes through an unsettled promise w/ same Constructor
|
|
flags: [async]
|
|
---*/
|
|
|
|
var resolveP1,
|
|
p1 = new Promise(function(resolve) {
|
|
resolveP1 = resolve;
|
|
}),
|
|
p2 = Promise.resolve(p1),
|
|
arg = {};
|
|
|
|
assert.sameValue(p1, p2, 'The value of p1 is expected to equal the value of p2');
|
|
|
|
p2.then(function(result) {
|
|
assert.sameValue(result, arg, 'The value of result is expected to equal the value of arg');
|
|
}).then($DONE, $DONE);
|
|
|
|
resolveP1(arg);
|