Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jportner committed Oct 27, 2023
1 parent cde385b commit bfd9430
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions system_test/connectionOptions.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Copyright (c) 2015-2019 Snowflake Computing Inc. All rights reserved.
*/
const externalAccount =
var externalAccount =
{
accessUrl: 'http://externalaccount.reg.local.snowflakecomputing.com:8082',
username: 'snowman',
Expand All @@ -25,23 +25,28 @@ const snowflakeTestSchema = process.env.SNOWFLAKE_TEST_SCHEMA;
const snowflakeTestRole = process.env.SNOWFLAKE_TEST_ROLE;
const snowflakeTestPassword = process.env.SNOWFLAKE_TEST_PASSWORD;

if (snowflakeTestProtocol === undefined) {
if (snowflakeTestProtocol === undefined)
{
snowflakeTestProtocol = 'https';
}

if (snowflakeTestHost === undefined) {
if (snowflakeTestHost === undefined)
{
snowflakeTestHost = snowflakeTestAccount + '.snowflakecomputing.com';
}

if (snowflakeTestPort === undefined) {
if (snowflakeTestPort === undefined)
{
snowflakeTestPort = '443';
}

if (snowflakeTestProxyHost === undefined) {
if (snowflakeTestProxyHost === undefined)
{
snowflakeTestProxyHost = 'localhost';
}

if (snowflakeTestProxyPort === undefined) {
if (snowflakeTestProxyPort === undefined)
{
snowflakeTestProxyPort = '3128';
}

Expand Down

0 comments on commit bfd9430

Please sign in to comment.