From 942786c2a7c0ef9abe2326c65e701a035b2f4ee9 Mon Sep 17 00:00:00 2001 From: Lewis Sanchez <87730006+lewis-sanchez@users.noreply.github.com> Date: Thu, 27 Apr 2023 17:20:12 -0700 Subject: [PATCH] Enables previously skipped tests (#22884) --- .../configuration/test/browser/configurationService.test.ts | 2 +- test/unit/node/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/services/configuration/test/browser/configurationService.test.ts b/src/vs/workbench/services/configuration/test/browser/configurationService.test.ts index 91d918c3cf..2f6690f563 100644 --- a/src/vs/workbench/services/configuration/test/browser/configurationService.test.ts +++ b/src/vs/workbench/services/configuration/test/browser/configurationService.test.ts @@ -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; const configurationRegistry = Registry.as(ConfigurationExtensions.Configuration); diff --git a/test/unit/node/index.js b/test/unit/node/index.js index d35db44c76..dc2bf6d6a1 100644 --- a/test/unit/node/index.js +++ b/test/unit/node/index.js @@ -198,7 +198,7 @@ function main() { // report failing test for every unexpected error during any of the tests const unexpectedErrors = []; 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) { unexpectedErrors.forEach(function (stack) { console.error('');