Skip to content

Commit 9390478

Browse files
committed
rename snowflake auth method tests to resemble reality
1 parent 890665e commit 9390478

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/platform/notebooks/deepnote/sqlIntegrationEnvironmentVariablesProvider.unit.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)