OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 InspectorTest.log("Tests that Runtime.evaluate works with awaitPromise flag."); | 5 let {session, contextGroup, Protocol} = InspectorTest.start("Tests that Runtime.
evaluate works with awaitPromise flag."); |
6 | 6 |
7 InspectorTest.addScript(` | 7 contextGroup.addScript(` |
8 function createPromiseAndScheduleResolve() | 8 function createPromiseAndScheduleResolve() |
9 { | 9 { |
10 var resolveCallback; | 10 var resolveCallback; |
11 var promise = new Promise((resolve) => resolveCallback = resolve); | 11 var promise = new Promise((resolve) => resolveCallback = resolve); |
12 setTimeout(resolveCallback.bind(null, { a : 239 }), 0); | 12 setTimeout(resolveCallback.bind(null, { a : 239 }), 0); |
13 return promise; | 13 return promise; |
14 }`); | 14 }`); |
15 | 15 |
16 InspectorTest.runTestSuite([ | 16 InspectorTest.runTestSuite([ |
17 function testResolvedPromise(next) | 17 function testResolvedPromise(next) |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 .then(() => next()); | 49 .then(() => next()); |
50 }, | 50 }, |
51 | 51 |
52 function testExceptionInEvaluate(next) | 52 function testExceptionInEvaluate(next) |
53 { | 53 { |
54 Protocol.Runtime.evaluate({ expression: "throw 239", awaitPromise: true }) | 54 Protocol.Runtime.evaluate({ expression: "throw 239", awaitPromise: true }) |
55 .then(result => InspectorTest.logMessage(result)) | 55 .then(result => InspectorTest.logMessage(result)) |
56 .then(() => next()); | 56 .then(() => next()); |
57 } | 57 } |
58 ]); | 58 ]); |
OLD | NEW |