7bbea08f66
This refactoring makes it easier to write advanced tests and gives full control over what's happening to the test code. It also forces description for every test. BUG=none Review-Url: https://codereview.chromium.org/2891213002 Cr-Commit-Position: refs/heads/master@{#45412}
23 lines
897 B
JavaScript
23 lines
897 B
JavaScript
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
// Flags: --expose-inspector-scripts
|
|
|
|
let {session, contextGroup, Protocol} = InspectorTest.start('Tests that stepping does not ignore injected script when passed a flag');
|
|
|
|
Protocol.Debugger.onPaused(message => {
|
|
let url = session._scriptMap.get(message.params.callFrames[0].location.scriptId).url;
|
|
if (url !== 'test.js') {
|
|
InspectorTest.log('InjectedSciptSource on stack.');
|
|
InspectorTest.completeTest();
|
|
}
|
|
Protocol.Debugger.stepInto();
|
|
});
|
|
|
|
session.setupScriptMap();
|
|
Protocol.Debugger.enable();
|
|
Protocol.Debugger.pause();
|
|
Protocol.Runtime.evaluate({expression: 'console.log(42)//# sourceURL=test.js'})
|
|
.then(() => InspectorTest.log('InjectedSciptSource was not reached'))
|
|
.then(InspectorTest.completeTest);
|