adding cpu count and ram to server info (#16109)

This commit is contained in:
Aasim Khan
2021-07-20 09:56:52 -07:00
committed by GitHub
parent efaf39f96a
commit 3ce6f9e78c
7 changed files with 21 additions and 3 deletions

View File

@@ -60,6 +60,8 @@ suite('Dashboard Properties Widget Tests', () => {
serverEdition: undefined,
azureVersion: undefined,
osVersion: undefined,
cpuCount: undefined,
physicalMemoryInMb: undefined,
options: {},
};

View File

@@ -1332,7 +1332,9 @@ suite('SQL ConnectionManagementService tests', () => {
azureVersion: 0,
osVersion: 'test_version',
options: { isBigDataCluster: 'test' },
isCloud: true
isCloud: true,
cpuCount: 0,
physicalMemoryInMb: 0
};
let uri: string = 'Editor Uri';
let options: IConnectionCompletionOptions = {