Add Notebook tests for Kernel Alias connections (#12722)

* More Generic tests for kernel alias connections

* Kernel Alias tests for the Notebook Model

* Updated titles of tests
This commit is contained in:
Vasu Bhog
2020-10-05 23:17:41 -05:00
committed by GitHub
parent 253ed55412
commit 726f0cef0e
3 changed files with 84 additions and 44 deletions

View File

@@ -1412,7 +1412,7 @@ suite('SQL ConnectionManagementService tests', () => {
});
test('providerNameToDisplayNameMap should return all providers', () => {
let expectedNames = ['MSSQL', 'PGSQL', 'KUSTO'];
let expectedNames = ['MSSQL', 'PGSQL', 'FAKE'];
let providerNames = Object.keys(connectionManagementService.providerNameToDisplayNameMap);
assert.equal(providerNames.length, 3);
assert.equal(providerNames[0], expectedNames[0]);