Disable all experiements tests (#23614)

This commit is contained in:
Charles Gagnon
2023-06-30 15:48:27 -07:00
committed by GitHub
parent b302aa9b81
commit 7ae2819209
2 changed files with 2 additions and 2 deletions

View File

@@ -63,7 +63,7 @@ export class TestExperimentService extends ExperimentService {
}
}
suite.skip('Experiment Service', () => { // {{SQL CARBON EDIT}} - disable failing suite
suite.skip('Experiment Service', () => { // {{SQL CARBON EDIT}} Tests are flaky, and have been removed in VS Code so disabling until we catch up
let instantiationService: TestInstantiationService;
let testConfigurationService: TestConfigurationService;
let testObject: ExperimentService;

View File

@@ -19,7 +19,7 @@ import { TestLifecycleService } from 'vs/workbench/test/browser/workbenchTestSer
import { TestCommandService } from 'vs/editor/test/browser/editorTestServices';
import { ICommandService } from 'vs/platform/commands/common/commands';
suite('Experimental Prompts', () => {
suite.skip('Experimental Prompts', () => { // {{SQL CARBON EDIT}} Tests are flaky, and have been removed in VS Code so disabling until we catch up
let instantiationService: TestInstantiationService;
let experimentService: TestExperimentService;
let experimentalPrompt: ExperimentalPrompts;