mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Update Schema Compare dialog to start a new connection (#15193)
* Update SC dialog to start a new connection * Functionally complete * Fix target db to pick correct database * Address comments * Added test+fixed one missing scenario * Address comments + add one more test
This commit is contained in:
@@ -47,6 +47,28 @@ export const mockConnectionProfile: azdata.connection.ConnectionProfile = {
|
||||
}
|
||||
};
|
||||
|
||||
export const mockConnectionProfile2: azdata.connection.ConnectionProfile = {
|
||||
providerId: 'My Provider2',
|
||||
connectionId: 'My Id2',
|
||||
connectionName: 'My Connection2',
|
||||
serverName: 'My Server2',
|
||||
databaseName: 'My Database2',
|
||||
userName: 'My User2',
|
||||
password: 'My Pwd2',
|
||||
authenticationType: 'SqlLogin',
|
||||
savePassword: false,
|
||||
groupFullName: 'My groupName2',
|
||||
groupId: 'My GroupId2',
|
||||
saveProfile: true,
|
||||
options: {
|
||||
server: 'My Server2',
|
||||
database: 'My Database2',
|
||||
user: 'My User2',
|
||||
password: 'My Pwd2',
|
||||
authenticationType: 'SqlLogin'
|
||||
}
|
||||
};
|
||||
|
||||
export const mockConnectionResult: azdata.ConnectionResult = {
|
||||
connected: false,
|
||||
connectionId: undefined,
|
||||
|
||||
Reference in New Issue
Block a user