Skip to content

Commit 036eb23

Browse files
authored
Skip O# type definition test (#8437)
2 parents 30d50e0 + 10a6b0d commit 036eb23

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

test/omnisharp/omnisharpIntegrationTests/definitionProvider.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describeIfNotRazorOrGenerator(`${OmniSharpDefinitionProvider.name}: ${testAssetW
4242
expect(definitionList[0].uri.path).toContain('definition.cs');
4343
});
4444

45-
test('Returns the definition from Metadata', async () => {
45+
test.skip('Returns the definition from Metadata', async () => {
4646
const omnisharpConfig = vscode.workspace.getConfiguration('omnisharp');
4747
await omnisharpConfig.update('enableDecompilationSupport', false, vscode.ConfigurationTarget.Global);
4848
await restartOmniSharpServer();

test/omnisharp/omnisharpIntegrationTests/inlayHints.integration.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ describeIfNotRazorOrGenerator(`Inlay Hints ${testAssetWorkspace.description}`, f
5151
await testAssetWorkspace.cleanupWorkspace();
5252
});
5353

54-
test('Hints retrieved for region', async () => {
54+
test.skip('Hints retrieved for region', async () => {
5555
const range = new vscode.Range(new vscode.Position(4, 8), new vscode.Position(15, 85));
5656
const hints: vscode.InlayHint[] = await vscode.commands.executeCommand(
5757
'vscode.executeInlayHintProvider',

test/omnisharp/omnisharpIntegrationTests/typeDefinitionProvider.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ describeIfNotRazorOrGenerator(`${OmniSharpDefinitionProvider.name}: ${testAssetW
4242
expect(definitionList[0].uri.path).toContain('typeDefinition.cs');
4343
});
4444

45-
test('Returns the definition from Metadata', async () => {
45+
test.skip('Returns the type definition from Metadata', async () => {
4646
const omnisharpConfig = vscode.workspace.getConfiguration('omnisharp');
4747
await omnisharpConfig.update('enableDecompilationSupport', false, vscode.ConfigurationTarget.Global);
4848
await restartOmniSharpServer();
@@ -59,7 +59,7 @@ describeIfNotRazorOrGenerator(`${OmniSharpDefinitionProvider.name}: ${testAssetW
5959
expect(definitionList[0].uri.path).toContain('[metadata] String.cs');
6060
});
6161

62-
test('Returns multiple definitions for partial types', async () => {
62+
test('Returns multiple type definitions for partial types', async () => {
6363
const definitionList = <vscode.Location[]>(
6464
await vscode.commands.executeCommand(
6565
'vscode.executeTypeDefinitionProvider',

0 commit comments

Comments
 (0)