Change standalone integration test to use sql login (#4728)

This commit is contained in:
Yurong He
2019-03-27 15:09:45 -07:00
committed by GitHub
parent a360bebd9d
commit 102b48c302
3 changed files with 10 additions and 6 deletions

View File

@@ -60,9 +60,9 @@ var TestingServers: TestServerProfile[] = [
new TestServerProfile(
{
serverName: 'SQLTOOLS2017-3',
userName: '',
password: '',
authenticationType: AuthenticationType.Windows,
userName: process.env.STANDALONE_SQL_USERNAME,
password: process.env.STANDALONE_SQL_PWD,
authenticationType: AuthenticationType.SqlLogin,
database: 'master',
provider: ConnectionProvider.SQLServer,
version: '2017'