mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Enables previously skipped tests (#22884)
This commit is contained in:
@@ -1384,7 +1384,7 @@ suite.skip('WorkspaceConfigurationService - Folder', () => { // {{SQL CARBON EDI
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
suite.skip('WorkspaceConfigurationService - Profiles', () => { // {{SQL CARBON EDIT}} skip suite
|
suite('WorkspaceConfigurationService - Profiles', () => {
|
||||||
|
|
||||||
let testObject: WorkspaceService, workspaceService: WorkspaceService, fileService: IFileService, environmentService: IWorkbenchEnvironmentService, userDataProfileService: IUserDataProfileService, instantiationService: TestInstantiationService;
|
let testObject: WorkspaceService, workspaceService: WorkspaceService, fileService: IFileService, environmentService: IWorkbenchEnvironmentService, userDataProfileService: IUserDataProfileService, instantiationService: TestInstantiationService;
|
||||||
const configurationRegistry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration);
|
const configurationRegistry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration);
|
||||||
|
|||||||
@@ -198,7 +198,7 @@ function main() {
|
|||||||
// report failing test for every unexpected error during any of the tests
|
// report failing test for every unexpected error during any of the tests
|
||||||
const unexpectedErrors = [];
|
const unexpectedErrors = [];
|
||||||
mocha.suite('Errors', function () {
|
mocha.suite('Errors', function () {
|
||||||
test.skip('should not have unexpected errors in tests', function () { // {{SQL CARBON TODO}} Reinstate test - failing due to "SDK is not initialized"
|
test('should not have unexpected errors in tests', function () {
|
||||||
if (unexpectedErrors.length) {
|
if (unexpectedErrors.length) {
|
||||||
unexpectedErrors.forEach(function (stack) {
|
unexpectedErrors.forEach(function (stack) {
|
||||||
console.error('');
|
console.error('');
|
||||||
|
|||||||
Reference in New Issue
Block a user