Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Unified Diff: test/inspector/runtime/evaluate-async-expected.txt

Issue 2390733002: [inspector] Make InspectorTest.sendCommand* private (Closed)
Patch Set: addressed comments Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/inspector/runtime/evaluate-async.js ('k') | test/inspector/runtime/evaluate-async-with-wrap-error.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/inspector/runtime/evaluate-async-expected.txt
diff --git a/test/inspector/runtime/evaluate-async-expected.txt b/test/inspector/runtime/evaluate-async-expected.txt
index da2afa6e67b3dfc8b3f62f25f88981a70e426505..c03dd7a40995e57660832e09331daca27f74a0ae 100644
--- a/test/inspector/runtime/evaluate-async-expected.txt
+++ b/test/inspector/runtime/evaluate-async-expected.txt
@@ -2,80 +2,94 @@ Tests that Runtime.evaluate works with awaitPromise flag.
Running test: testResolvedPromise
{
+ id : <messageId>
result : {
- description : 239
- type : number
- value : 239
+ result : {
+ description : 239
+ type : number
+ value : 239
+ }
}
}
Running test: testRejectedPromise
{
- exceptionDetails : {
- columnNumber : 0
- exception : {
+ 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
- objectId : 0
type : number
value : 239
}
- exceptionId : 0
- lineNumber : 0
- scriptId : (scriptId)
- stackTrace : {
- callFrames : [
- ]
- }
- text : Uncaught (in promise)
- }
- result : {
- description : 239
- type : number
- value : 239
}
}
Running test: testPrimitiveValueInsteadOfPromise
{
- code : -32000
- message : Result of the evaluation is not a promise
+ error : {
+ code : -32000
+ message : Result of the evaluation is not a promise
+ }
+ id : <messageId>
}
Running test: testObjectInsteadOfPromise
{
- code : -32000
- message : Result of the evaluation is not a promise
+ error : {
+ code : -32000
+ message : Result of the evaluation is not a promise
+ }
+ id : <messageId>
}
Running test: testPendingPromise
{
+ id : <messageId>
result : {
- type : object
- value : {
- a : 239
+ result : {
+ type : object
+ value : {
+ a : 239
+ }
}
}
}
Running test: testExceptionInEvaluate
{
- exceptionDetails : {
- columnNumber : 0
- exception : {
+ id : <messageId>
+ result : {
+ exceptionDetails : {
+ columnNumber : 0
+ exception : {
+ description : 239
+ type : number
+ value : 239
+ }
+ exceptionId : <exceptionId>
+ lineNumber : 0
+ scriptId : <scriptId>
+ text : Uncaught
+ }
+ result : {
description : 239
- objectId : 0
type : number
value : 239
}
- exceptionId : 0
- lineNumber : 0
- scriptId : (scriptId)
- text : Uncaught
- }
- result : {
- description : 239
- type : number
- value : 239
}
}
-
« no previous file with comments | « test/inspector/runtime/evaluate-async.js ('k') | test/inspector/runtime/evaluate-async-with-wrap-error.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698