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

Side by Side Diff: test/inspector/debugger/set-script-source-exception.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('Check that setScriptSource completes correctly when an exception is throw n.'); 5 InspectorTest.log('Check that setScriptSource completes correctly when an except ion is thrown.');
6 6
7 Protocol.Debugger.enable(); 7 Protocol.Debugger.enable();
8 8
9 InspectorTest.runTestSuite([ 9 InspectorTest.runTestSuite([
10 function testIncorrectScriptId(next) { 10 function testIncorrectScriptId(next) {
11 Protocol.Debugger.setScriptSource({ scriptId: '-1', scriptSource: '0' }) 11 Protocol.Debugger.setScriptSource({ scriptId: '-1', scriptSource: '0' })
12 .then(InspectorTest.logMessage) 12 .then(InspectorTest.logMessage)
13 .then(next); 13 .then(next);
14 }, 14 },
15 15
16 function testSourceWithSyntaxError(next) { 16 function testSourceWithSyntaxError(next) {
17 Protocol.Debugger.onceScriptParsed() 17 Protocol.Debugger.onceScriptParsed()
18 .then(message => Protocol.Debugger.setScriptSource({ scriptId: message.par ams.scriptId, scriptSource: 'a # b' })) 18 .then(message => Protocol.Debugger.setScriptSource({ scriptId: message.par ams.scriptId, scriptSource: 'a # b' }))
19 .then(InspectorTest.logMessage) 19 .then(InspectorTest.logMessage)
20 .then(next); 20 .then(next);
21 InspectorTest.addScript('function foo() {}'); 21 InspectorTest.addScript('function foo() {}');
22 } 22 }
23 ]); 23 ]);
OLDNEW
« no previous file with comments | « test/inspector/debugger/script-parsed-for-runtime-evaluate.js ('k') | test/inspector/debugger/step-into.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698