diff --git a/test/integration-tests/testexplorer/TestExplorerIntegration.test.ts b/test/integration-tests/testexplorer/TestExplorerIntegration.test.ts index a03c5adeb..f0f5d19ad 100644 --- a/test/integration-tests/testexplorer/TestExplorerIntegration.test.ts +++ b/test/integration-tests/testexplorer/TestExplorerIntegration.test.ts @@ -150,7 +150,24 @@ tag("large").suite("Test Explorer Suite", function () { } }); - test("Debugs specified XCTest test", runXCTest); + test("Debugs specified XCTest test", async function () { + // This test is failing consistently on Windows nightly-main (6.3-dev). + // Skip it until a fix is made. + // + // GitHub Issue: https://github.com/swiftlang/vscode-swift/issues/1986 + if ( + workspaceContext.globalToolchain.swiftVersion.dev && + workspaceContext.globalToolchain.swiftVersion.isGreaterThanOrEqual({ + major: 6, + minor: 3, + patch: 0, + }) + ) { + this.skip(); + } + await runXCTest.call(this); + }); + test("Debugs specified swift-testing test", async function () { await runSwiftTesting.call(this); });