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

Side by Side Diff: test/inspector/debugger/async-stack-created-frame.js

Issue 2713023004: [inspector] added reconnect method for tests (Closed)
Patch Set: rebased 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 unified diff | Download patch
OLDNEW
1 // Copyright 2017 the V8 project authors. All rights reserved. 1 // Copyright 2017 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 print('Checks created frame for async call chain'); 5 InspectorTest.log('Checks created frame for async call chain');
6 6
7 InspectorTest.addScript( 7 InspectorTest.addScript(
8 ` 8 `
9 function foo1() { 9 function foo1() {
10 debugger; 10 debugger;
11 } 11 }
12 12
13 function foo2() { 13 function foo2() {
14 debugger; 14 debugger;
15 } 15 }
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 169
170 function testSetTimeouts(next) { 170 function testSetTimeouts(next) {
171 Protocol.Runtime 171 Protocol.Runtime
172 .evaluate({ 172 .evaluate({
173 expression: 'setTimeouts()//# sourceURL=expr.js', 173 expression: 'setTimeouts()//# sourceURL=expr.js',
174 awaitPromise: true 174 awaitPromise: true
175 }) 175 })
176 .then(next); 176 .then(next);
177 } 177 }
178 ]); 178 ]);
OLDNEW
« no previous file with comments | « test/inspector/debugger/async-stack-await.js ('k') | test/inspector/debugger/async-stack-for-promise.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698