@@ -21,7 +21,7 @@ describe("launchConfigManager", () => {
2121 fse . pathExistsSync . mockImplementation ( ( ) => false ) ;
2222 const launchConfigManager = LaunchConfigManager . instance ;
2323 expect ( launchConfigManager . getLaunchConfig ( ) ) . toEqual ( 'None' ) ;
24- expect ( vscodeMock . commands . executeCommand ) . toHaveBeenCalledWith ( 'setContext' , 'launchJsonStatus' , 'None' ) ;
24+ expect ( vscodeMock . commands . executeCommand ) . toHaveBeenCalledWith ( 'setContext' , 'launchJsonStatus' , 'None' ) ;
2525 } ) ;
2626
2727 it ( 'updates launchJsonStatus with "Unsupported" when there is no supported debug config' , async ( ) => {
@@ -35,7 +35,7 @@ describe("launchConfigManager", () => {
3535 } ) ;
3636 const launchConfigManager = LaunchConfigManager . instance ;
3737 expect ( launchConfigManager . getLaunchConfig ( ) ) . toEqual ( 'Unsupported' ) ;
38- expect ( vscodeMock . commands . executeCommand ) . toHaveBeenCalledWith ( 'setContext' , 'launchJsonStatus' , 'Unsupported' ) ;
38+ expect ( vscodeMock . commands . executeCommand ) . toHaveBeenCalledWith ( 'setContext' , 'launchJsonStatus' , 'Unsupported' ) ;
3939 } ) ;
4040
4141 it ( 'returns a supported debug config when one exists' , async ( ) => {
@@ -141,7 +141,7 @@ describe("launchConfigManager", () => {
141141 vscodeMock . Uri . joinPath = jest . fn ( ) ;
142142 const launchConfigManager = LaunchConfigManager . instance ;
143143 launchConfigManager . configureLaunchJson ( ) ;
144- expect ( vscodeMock . WorkspaceConfiguration . update ) . toHaveBeenCalledWith ( 'configurations' , Array ( 4 ) . fill ( expect . anything ( ) ) ) ;
144+ expect ( vscodeMock . WorkspaceConfiguration . update ) . toHaveBeenCalledWith ( 'configurations' , Array ( 4 ) . fill ( expect . anything ( ) ) ) ;
145145 } ) ;
146146 } ) ;
147147
0 commit comments