@@ -14,32 +14,32 @@ suite("ISECompatibility feature", () => {
1414 await vscode . commands . executeCommand ( "PowerShell.EnableISEMode" ) ;
1515 for ( const iseSetting of ISECompatibilityFeature . settings ) {
1616 const currently = vscode . workspace . getConfiguration ( iseSetting . path ) . get ( iseSetting . name ) ;
17- assert . equal ( currently , iseSetting . value ) ;
17+ assert . strictEqual ( currently , iseSetting . value ) ;
1818 }
1919 } ) ;
2020
2121 test ( "It unsets ISE Settings" , async ( ) => {
2222 // Change state to something that DisableISEMode will change
2323 await vscode . workspace . getConfiguration ( "workbench" ) . update ( "colorTheme" , "PowerShell ISE" , true ) ;
24- assert . equal ( vscode . workspace . getConfiguration ( "workbench" ) . get ( "colorTheme" ) , "PowerShell ISE" ) ;
24+ assert . strictEqual ( vscode . workspace . getConfiguration ( "workbench" ) . get ( "colorTheme" ) , "PowerShell ISE" ) ;
2525
2626 await vscode . commands . executeCommand ( "PowerShell.DisableISEMode" ) ;
2727 for ( const iseSetting of ISECompatibilityFeature . settings ) {
2828 const currently = vscode . workspace . getConfiguration ( iseSetting . path ) . get ( iseSetting . name ) ;
29- assert . notEqual ( currently , iseSetting . value ) ;
29+ assert . notStrictEqual ( currently , iseSetting . value ) ;
3030 }
3131 } ) . timeout ( 10000 ) ;
3232
3333 test ( "It leaves Theme after being changed after enabling ISE Mode" , async ( ) => {
3434 await vscode . commands . executeCommand ( "PowerShell.EnableISEMode" ) ;
35- assert . equal ( vscode . workspace . getConfiguration ( "workbench" ) . get ( "colorTheme" ) , "PowerShell ISE" ) ;
35+ assert . strictEqual ( vscode . workspace . getConfiguration ( "workbench" ) . get ( "colorTheme" ) , "PowerShell ISE" ) ;
3636
3737 await vscode . workspace . getConfiguration ( "workbench" ) . update ( "colorTheme" , "Dark+" , true ) ;
3838 await vscode . commands . executeCommand ( "PowerShell.DisableISEMode" ) ;
3939 for ( const iseSetting of ISECompatibilityFeature . settings ) {
4040 const currently = vscode . workspace . getConfiguration ( iseSetting . path ) . get ( iseSetting . name ) ;
41- assert . notEqual ( currently , iseSetting . value ) ;
41+ assert . notStrictEqual ( currently , iseSetting . value ) ;
4242 }
43- assert . equal ( vscode . workspace . getConfiguration ( "workbench" ) . get ( "colorTheme" ) , "Dark+" ) ;
43+ assert . strictEqual ( vscode . workspace . getConfiguration ( "workbench" ) . get ( "colorTheme" ) , "Dark+" ) ;
4444 } ) . timeout ( 10000 ) ;
4545} ) ;
0 commit comments