File tree Expand file tree Collapse file tree
extensions/ql-vscode/test/vscode-tests/cli-integration Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -84,6 +84,19 @@ async function compileAndRunQuery(
8484 console . log ( `Content: ${ doc . getText ( ) } ` ) ;
8585 }
8686 }
87+ const scopelessConfig = workspace
88+ . getConfiguration ( "debug" )
89+ . get < string > ( "saveBeforeStart" , "default" ) ;
90+ const qlConfig = workspace
91+ . getConfiguration ( "debug" , { languageId : "ql" } )
92+ . get < string > ( "saveBeforeStart" , "default" ) ;
93+ const codeqlConfig = workspace
94+ . getConfiguration ( "debug" , { languageId : "codeql" } )
95+ . get < string > ( "saveBeforeStart" , "default" ) ;
96+
97+ console . log ( `Scopeless config: ${ scopelessConfig } ` ) ;
98+ console . log ( `QL config: ${ qlConfig } ` ) ;
99+ console . log ( `CodeQL config: ${ codeqlConfig } ` ) ;
87100 console . log ( "Starting debugging" ) ;
88101 await controller . startDebugging (
89102 {
You can’t perform that action at this time.
0 commit comments