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

Unified Diff: test/inspector/debugger/async-stack-created-frame-expected.txt

Issue 2648873002: [inspector] added creation frame for async call chains for promises (Closed)
Patch Set: fixed usage of external reference Created 3 years, 11 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
Index: test/inspector/debugger/async-stack-created-frame-expected.txt
diff --git a/test/inspector/debugger/async-stack-created-frame-expected.txt b/test/inspector/debugger/async-stack-created-frame-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..9e9e751ab465c111559eaf57dc3e54057bf4ccae
--- /dev/null
+++ b/test/inspector/debugger/async-stack-created-frame-expected.txt
@@ -0,0 +1,71 @@
+Checks created frame for async call chain
+
+Running test: testPromise
+foo1 (test.js:10:2)
+-- Promise.resolve --
+promise (test.js:21:2)
+(anonymous) (expr.js:0:0)
+--- created in ---
+promise (test.js:19:11)
+
+
+Running test: testPromiseThen
+foo1 (test.js:10:2)
+-- Promise.resolve --
+promiseThen (test.js:30:2)
+(anonymous) (expr.js:0:0)
+--- created in ---
+promiseThen (test.js:27:11)
+
+foo2 (test.js:14:2)
+-- Promise.resolve --
+--- created in ---
+promiseThen (test.js:28:14)
+-- Promise.resolve --
+promiseThen (test.js:30:2)
+(anonymous) (expr.js:0:0)
+--- created in ---
+promiseThen (test.js:27:11)
+
+
+Running test: testPromiseResolve
+foo1 (test.js:10:2)
+-- Promise.resolve --
+promiseResolve (test.js:35:17)
+(anonymous) (expr.js:0:0)
+--- created in ---
+promiseResolve (test.js:35:17)
+
+
+Running test: testPromiseReject
+foo1 (test.js:10:2)
+-- Promise.reject --
+promiseReject (test.js:39:17)
+(anonymous) (expr.js:0:0)
+--- created in ---
+promiseReject (test.js:39:17)
+
+
+Running test: testPromiseAll
+foo1 (test.js:10:2)
+-- Promise.resolve --
+--- created in ---
+promiseAll (test.js:43:17)
+-- Promise.resolve --
+promiseAll (test.js:43:31)
+(anonymous) (expr.js:0:0)
+--- created in ---
+promiseAll (test.js:43:31)
+
+
+Running test: testPromiseRace
+foo1 (test.js:10:2)
+-- Promise.resolve --
+--- created in ---
+promiseRace (test.js:47:17)
+-- Promise.resolve --
+promiseRace (test.js:47:32)
+(anonymous) (expr.js:0:0)
+--- created in ---
+promiseRace (test.js:47:32)
+

Powered by Google App Engine
This is Rietveld 408576698