@@ -592,7 +592,7 @@ suite('SqlIntegrationEnvironmentVariablesProvider', () => {
592592 assert . strictEqual ( credentialsJson . url , 'snowflake://user:pass@minimal-account?application=Deepnote' ) ;
593593 } ) ;
594594
595- test ( 'Throws error for unsupported Snowflake auth method (OKTA)' , async ( ) => {
595+ test ( 'Skips unsupported Snowflake auth method (OKTA)' , async ( ) => {
596596 const uri = Uri . file ( '/test/notebook.deepnote' ) ;
597597 const integrationId = 'snowflake-okta' ;
598598 const config : SnowflakeIntegrationConfig = {
@@ -617,7 +617,7 @@ suite('SqlIntegrationEnvironmentVariablesProvider', () => {
617617 assert . deepStrictEqual ( envVars , { } ) ;
618618 } ) ;
619619
620- test ( 'Throws error for unsupported Snowflake auth method (AZURE_AD)' , async ( ) => {
620+ test ( 'Skips unsupported Snowflake auth method (AZURE_AD)' , async ( ) => {
621621 const uri = Uri . file ( '/test/notebook.deepnote' ) ;
622622 const integrationId = 'snowflake-azure' ;
623623 const config : SnowflakeIntegrationConfig = {
@@ -641,7 +641,7 @@ suite('SqlIntegrationEnvironmentVariablesProvider', () => {
641641 assert . deepStrictEqual ( envVars , { } ) ;
642642 } ) ;
643643
644- test ( 'Throws error for unsupported Snowflake auth method (KEY_PAIR)' , async ( ) => {
644+ test ( 'Skips unsupported Snowflake auth method (KEY_PAIR)' , async ( ) => {
645645 const uri = Uri . file ( '/test/notebook.deepnote' ) ;
646646 const integrationId = 'snowflake-keypair-user' ;
647647 const config : SnowflakeIntegrationConfig = {
0 commit comments