File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import { Editor } from './editor';
1111import { IElement } from '../src/driver' ;
1212
1313const VIEWLET = 'div[id="workbench.view.debug"]' ;
14- const DEBUG_VIEW = `${ VIEWLET } .debug-view-content ` ;
14+ const DEBUG_VIEW = `${ VIEWLET } ` ;
1515const CONFIGURE = `div[id="workbench.parts.sidebar"] .actions-container .codicon-gear` ;
1616const STOP = `.debug-toolbar .action-label[title*="Stop"]` ;
1717const STEP_OVER = `.debug-toolbar .action-label[title*="Step Over"]` ;
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export function setup() {
1717
1818 await app . workbench . debug . openDebugViewlet ( ) ;
1919 await app . workbench . quickopen . openFile ( 'app.js' ) ;
20- await app . workbench . debug . configure ( ) ;
20+ await app . workbench . quickopen . runCommand ( 'Debug: Open launch.json' ) ;
2121
2222 const launchJsonPath = path . join ( app . workspacePathOrFolder , '.vscode' , 'launch.json' ) ;
2323 const content = fs . readFileSync ( launchJsonPath , 'utf8' ) ;
You can’t perform that action at this time.
0 commit comments