| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../../resources/js-test.js"></script> | |
| 5 </head> | |
| 6 <body> | |
| 7 <div id="description"></div> | |
| 8 <div id="console"></div> | |
| 9 <script> | |
| 10 description('Test Promise.'); | |
| 11 | |
| 12 window.jsTestIsAsync = true; | |
| 13 result = undefined; | |
| 14 | |
| 15 var resolve; | |
| 16 var promise = Promise.resolve(new Promise(function (r) { resolve = r;} )); | |
| 17 | |
| 18 promise.then(function(result) { | |
| 19 window.result = result; | |
| 20 shouldBeEqualToString('result', 'hello'); | |
| 21 finishJSTest(); | |
| 22 }, function() { | |
| 23 testFailed('rejected'); | |
| 24 finishJSTest(); | |
| 25 }); | |
| 26 | |
| 27 resolve('hello'); | |
| 28 shouldBe('result', 'undefined'); | |
| 29 </script> | |
| 30 </body> | |
| 31 </html> | |
| OLD | NEW |