OLD | NEW |
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 // TODO(kozyatinskiy): fix this test. | |
6 InspectorTest.log('Checks created frame for async call chain'); | 5 InspectorTest.log('Checks created frame for async call chain'); |
7 | 6 |
8 InspectorTest.addScript( | 7 InspectorTest.addScript( |
9 ` | 8 ` |
10 function foo1() { | 9 function foo1() { |
11 debugger; | 10 debugger; |
12 } | 11 } |
13 | 12 |
14 function foo2() { | 13 function foo2() { |
15 debugger; | 14 debugger; |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
170 | 169 |
171 function testSetTimeouts(next) { | 170 function testSetTimeouts(next) { |
172 Protocol.Runtime | 171 Protocol.Runtime |
173 .evaluate({ | 172 .evaluate({ |
174 expression: 'setTimeouts()//# sourceURL=expr.js', | 173 expression: 'setTimeouts()//# sourceURL=expr.js', |
175 awaitPromise: true | 174 awaitPromise: true |
176 }) | 175 }) |
177 .then(next); | 176 .then(next); |
178 } | 177 } |
179 ]); | 178 ]); |
OLD | NEW |