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

Unified Diff: test/inspector/debugger/step-out-async-await-expected.txt

Issue 2779143002: [inspector] added test for StepOut at return postion from async function (Closed)
Patch Set: better expectation Created 3 years, 9 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/debugger/step-out-async-await.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/inspector/debugger/step-out-async-await-expected.txt
diff --git a/test/inspector/debugger/step-out-async-await-expected.txt b/test/inspector/debugger/step-out-async-await-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..7b585762b1415d010ab673ca3ec2a104ec79add4
--- /dev/null
+++ b/test/inspector/debugger/step-out-async-await-expected.txt
@@ -0,0 +1,67 @@
+StepOut from return position of async function.
+
+Running test: testStepInto
+ p.then(() => 1);
+ #debugger;
+ return p;
+
+ debugger;
+ #return p;
+ }
+
+ return p;
+ #}
+ await foo();
+
+ await p;
+ p.then(() => #1);
+ debugger;
+
+
+Running test: testStepOver
+ p.then(() => 1);
+ #debugger;
+ return p;
+
+ debugger;
+ #return p;
+ }
+
+ return p;
+ #}
+ await foo();
+
+ await p;
+ p.then(() => #1);
+ debugger;
+
+ await p;
+ p.then(() => 1#);
+ debugger;
+
+ await foo();
+ #}
+
+
+
+Running test: testStepOut
+ p.then(() => 1);
+ #debugger;
+ return p;
+
+ debugger;
+ #return p;
+ }
+
+ return p;
+ #}
+ await foo();
+
+ await p;
+ p.then(() => #1);
+ debugger;
+
+ await foo();
+ #}
+
+
« no previous file with comments | « test/inspector/debugger/step-out-async-await.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698