Skip to content

Commit

Permalink
Revert "Skip flaky vscode test suites (#23535)"
Browse files Browse the repository at this point in the history
This reverts commit 882bdb3.
  • Loading branch information
lewis-sanchez committed Jul 11, 2023
1 parent 8c70342 commit 321a9eb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const defaultTerminalConfig: Partial<ITerminalConfiguration> = {
unicodeVersion: '6'
};

suite.skip('Buffer Content Tracker', () => { // {{SQL CARBON EDIT}} skip failing suite
suite('Buffer Content Tracker', () => {
let instantiationService: TestInstantiationService;
let configurationService: TestConfigurationService;
let themeService: TestThemeService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ suite('TerminalLinkManager', () => {
} as Partial<ITerminalCapabilityStore> as any, instantiationService.createInstance(TerminalLinkResolver));
});

suite.skip('getLinks and open recent link', () => { // {{SQL CARBON EDIT}} skip failing suite
suite('getLinks and open recent link', () => {
test('should return no links', async () => {
const links = await linkManager.getLinks();
equals(links.webLinks, []);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { TestFileService } from 'vs/workbench/test/browser/workbenchTestServices
import { TestExtensionService } from 'vs/workbench/test/common/workbenchTestServices';


suite.skip('Getting Started Markdown Renderer', () => { // {{SQL CARBON EDIT}} - disable suite
suite('Getting Started Markdown Renderer', () => {
test('renders theme picker markdown with images', async () => {
const fileService = new TestFileService();
const languageService = new LanguageService();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class ConfigurationCache implements IConfigurationCache {
async remove({ type, key }: ConfigurationKey): Promise<void> { this.cache.delete(`${type}:${key}`); }
}

suite.skip('DefaultConfiguration', () => { // {{SQL CARBON EDIT}} skip failing suite
suite('DefaultConfiguration', () => {

const configurationRegistry = Registry.as<IConfigurationRegistry>(Extensions.Configuration);
const cacheKey: ConfigurationKey = { type: 'defaults', key: 'configurationDefaultsOverrides' };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class ConfigurationCache implements IConfigurationCache {
async remove(): Promise<void> { }
}

suite.skip('ConfigurationEditing', () => { // {{SQL CARBON EDIT}} skip suite
suite('ConfigurationEditing', () => {

let instantiationService: TestInstantiationService;
let userDataProfileService: IUserDataProfileService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const nullContext = {
getExecPath: () => undefined
};

suite.skip('Configuration Resolver Service', () => { // {{SQL CARBON EDIT}} - skip failing suite
suite('Configuration Resolver Service', () => {
let configurationResolverService: IConfigurationResolverService | null;
const envVariables: { [key: string]: string } = { key1: 'Value for key1', key2: 'Value for key2' };
// let environmentService: MockWorkbenchEnvironmentService;
Expand Down

0 comments on commit 321a9eb

Please sign in to comment.