mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 01:25:38 -05:00
* Adding importConfig onPageEnter() test * Removing redundancy from dacpac wizard pages * promisifying file selection so it can be awaited in the test * removing debug prints * PR feedback
23 lines
801 B
TypeScript
23 lines
801 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as azdata from 'azdata';
|
|
|
|
export const mockConnectionProfile: azdata.connection.ConnectionProfile = {
|
|
providerId: 'MSSQL',
|
|
connectionId: 'My Connection ID',
|
|
connectionName: 'My Connection',
|
|
serverName: 'My Server',
|
|
databaseName: 'My Database',
|
|
userName: 'My User',
|
|
password: 'My Pwd',
|
|
authenticationType: 'SqlLogin',
|
|
savePassword: false,
|
|
groupFullName: 'My groupName',
|
|
groupId: 'My GroupId',
|
|
saveProfile: true,
|
|
options: {}
|
|
};
|