aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/runtime/evaluate-async-expected.txt
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/runtime/evaluate-async-expected.txt')
-rw-r--r--deps/v8/test/inspector/runtime/evaluate-async-expected.txt95
1 files changed, 95 insertions, 0 deletions
diff --git a/deps/v8/test/inspector/runtime/evaluate-async-expected.txt b/deps/v8/test/inspector/runtime/evaluate-async-expected.txt
new file mode 100644
index 0000000000..c03dd7a409
--- /dev/null
+++ b/deps/v8/test/inspector/runtime/evaluate-async-expected.txt
@@ -0,0 +1,95 @@
+Tests that Runtime.evaluate works with awaitPromise flag.
+
+Running test: testResolvedPromise
+{
+ id : <messageId>
+ result : {
+ result : {
+ description : 239
+ type : number
+ value : 239
+ }
+ }
+}
+
+Running test: testRejectedPromise
+{
+ id : <messageId>
+ result : {
+ exceptionDetails : {
+ columnNumber : 0
+ exception : {
+ description : 239
+ type : number
+ value : 239
+ }
+ exceptionId : <exceptionId>
+ lineNumber : 0
+ stackTrace : {
+ callFrames : [
+ ]
+ }
+ text : Uncaught (in promise)
+ }
+ result : {
+ description : 239
+ type : number
+ value : 239
+ }
+ }
+}
+
+Running test: testPrimitiveValueInsteadOfPromise
+{
+ error : {
+ code : -32000
+ message : Result of the evaluation is not a promise
+ }
+ id : <messageId>
+}
+
+Running test: testObjectInsteadOfPromise
+{
+ error : {
+ code : -32000
+ message : Result of the evaluation is not a promise
+ }
+ id : <messageId>
+}
+
+Running test: testPendingPromise
+{
+ id : <messageId>
+ result : {
+ result : {
+ type : object
+ value : {
+ a : 239
+ }
+ }
+ }
+}
+
+Running test: testExceptionInEvaluate
+{
+ id : <messageId>
+ result : {
+ exceptionDetails : {
+ columnNumber : 0
+ exception : {
+ description : 239
+ type : number
+ value : 239
+ }
+ exceptionId : <exceptionId>
+ lineNumber : 0
+ scriptId : <scriptId>
+ text : Uncaught
+ }
+ result : {
+ description : 239
+ type : number
+ value : 239
+ }
+ }
+}