From 4f3744b03a4ddff5e0a92eae4e7366ece2456e59 Mon Sep 17 00:00:00 2001 From: David Barbet Date: Wed, 12 Nov 2025 12:18:50 -0800 Subject: [PATCH] Skip O# doc comment insertion tests --- .../documentationCommentAutoFormatting.integration.test.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/omnisharp/omnisharpIntegrationTests/documentationCommentAutoFormatting.integration.test.ts b/test/omnisharp/omnisharpIntegrationTests/documentationCommentAutoFormatting.integration.test.ts index 193035f5de..df49d08ee0 100644 --- a/test/omnisharp/omnisharpIntegrationTests/documentationCommentAutoFormatting.integration.test.ts +++ b/test/omnisharp/omnisharpIntegrationTests/documentationCommentAutoFormatting.integration.test.ts @@ -3,10 +3,9 @@ * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ -import { expect, test, beforeAll, afterAll } from '@jest/globals'; +import { expect, test, beforeAll, afterAll, describe } from '@jest/globals'; import * as vscode from 'vscode'; import * as path from 'path'; -import { describeIfNotRazorOrGenerator } from './integrationHelpers'; import testAssetWorkspace from './testAssets/activeTestAssetWorkspace'; const onTypeFormatProviderCommand = 'vscode.executeFormatOnTypeProvider'; @@ -19,7 +18,7 @@ function normalizeNewlines(original: string): string { return original; } -describeIfNotRazorOrGenerator(`Documentation Comment Auto Formatting: ${testAssetWorkspace.description}`, function () { +describe.skip(`Documentation Comment Auto Formatting: ${testAssetWorkspace.description}`, function () { let fileUri: vscode.Uri; beforeAll(async function () {