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

Side by Side Diff: test/inspector/debugger/set-breakpoint-before-enabling.js

Issue 2891213002: [inspector] Refactor protocol-test.js (Closed)
Patch Set: comments addressed Created 3 years, 7 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 2016 the V8 project authors. All rights reserved. 1 // Copyright 2016 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 let {session, contextGroup, Protocol} = InspectorTest.start('Tests that setting breakpoint before enabling debugger produces an error');
6
5 Protocol.Debugger.setBreakpointByUrl({ url: "http://example.com", lineNumber: 10 }).then(didSetBreakpointByUrlBeforeEnable); 7 Protocol.Debugger.setBreakpointByUrl({ url: "http://example.com", lineNumber: 10 }).then(didSetBreakpointByUrlBeforeEnable);
6 8
7 function didSetBreakpointByUrlBeforeEnable(message) 9 function didSetBreakpointByUrlBeforeEnable(message)
8 { 10 {
9 InspectorTest.log("setBreakpointByUrl error: " + JSON.stringify(message.error, null, 2)); 11 InspectorTest.log("setBreakpointByUrl error: " + JSON.stringify(message.error, null, 2));
10 Protocol.Debugger.setBreakpoint().then(didSetBreakpointBeforeEnable); 12 Protocol.Debugger.setBreakpoint().then(didSetBreakpointBeforeEnable);
11 } 13 }
12 14
13 function didSetBreakpointBeforeEnable(message) 15 function didSetBreakpointBeforeEnable(message)
14 { 16 {
15 InspectorTest.log("setBreakpoint error: " + JSON.stringify(message.error, null , 2)); 17 InspectorTest.log("setBreakpoint error: " + JSON.stringify(message.error, null , 2));
16 InspectorTest.completeTest(); 18 InspectorTest.completeTest();
17 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698