@@ -330,11 +330,6 @@ final class SemanticTokensTests: XCTestCase {
330
330
func testSemanticTokensForFunctionSignatures( ) async throws {
331
331
try await SkipUnless . sourcekitdHasSemanticTokensRequest ( )
332
332
333
- #if os(Windows)
334
- // FIXME: Run when https://github.com/swiftlang/sourcekit-lsp/issues/1770 is fixed
335
- try XCTSkipIf ( true , " https://github.com/swiftlang/sourcekit-lsp/issues/1770 " )
336
- #endif
337
-
338
333
try await assertSemanticTokens (
339
334
markedContents: " 1️⃣func 2️⃣f(3️⃣x: 4️⃣Int, _ 5️⃣y: 6️⃣String) {} " ,
340
335
expected: [
@@ -409,11 +404,6 @@ final class SemanticTokensTests: XCTestCase {
409
404
func testSemanticTokensForEnumMembers( ) async throws {
410
405
try await SkipUnless . sourcekitdHasSemanticTokensRequest ( )
411
406
412
- #if os(Windows)
413
- // FIXME: Run when https://github.com/swiftlang/sourcekit-lsp/issues/1770 is fixed
414
- try XCTSkipIf ( true , " https://github.com/swiftlang/sourcekit-lsp/issues/1770 " )
415
- #endif
416
-
417
407
try await assertSemanticTokens (
418
408
markedContents: """
419
409
1️⃣enum 2️⃣Maybe<3️⃣T> {
@@ -500,11 +490,6 @@ final class SemanticTokensTests: XCTestCase {
500
490
func testEmptyEdit( ) async throws {
501
491
try await SkipUnless . sourcekitdHasSemanticTokensRequest ( )
502
492
503
- #if os(Windows)
504
- // FIXME: Run when https://github.com/swiftlang/sourcekit-lsp/issues/1770 is fixed
505
- try XCTSkipIf ( true , " https://github.com/swiftlang/sourcekit-lsp/issues/1770 " )
506
- #endif
507
-
508
493
let testClient = try await TestSourceKitLSPClient ( )
509
494
let uri = DocumentURI ( for: . swift)
510
495
let positions = testClient. openDocument (
@@ -588,11 +573,6 @@ final class SemanticTokensTests: XCTestCase {
588
573
func testReplaceUntilEndOfToken( ) async throws {
589
574
try await SkipUnless . sourcekitdHasSemanticTokensRequest ( )
590
575
591
- #if os(Windows)
592
- // FIXME: Run when https://github.com/swiftlang/sourcekit-lsp/issues/1770 is fixed
593
- try XCTSkipIf ( true , " https://github.com/swiftlang/sourcekit-lsp/issues/1770 " )
594
- #endif
595
-
596
576
let testClient = try await TestSourceKitLSPClient ( )
597
577
let uri = DocumentURI ( for: . swift)
598
578
let positions = testClient. openDocument (
@@ -646,11 +626,6 @@ final class SemanticTokensTests: XCTestCase {
646
626
func testInsertSpaceBeforeToken( ) async throws {
647
627
try await SkipUnless . sourcekitdHasSemanticTokensRequest ( )
648
628
649
- #if os(Windows)
650
- // FIXME: Run when https://github.com/swiftlang/sourcekit-lsp/issues/1770 is fixed
651
- try XCTSkipIf ( true , " https://github.com/swiftlang/sourcekit-lsp/issues/1770 " )
652
- #endif
653
-
654
629
let testClient = try await TestSourceKitLSPClient ( )
655
630
let uri = DocumentURI ( for: . swift)
656
631
let positions = testClient. openDocument (
@@ -718,11 +693,6 @@ final class SemanticTokensTests: XCTestCase {
718
693
func testInsertNewline( ) async throws {
719
694
try await SkipUnless . sourcekitdHasSemanticTokensRequest ( )
720
695
721
- #if os(Windows)
722
- // FIXME: Run when https://github.com/swiftlang/sourcekit-lsp/issues/1770 is fixed
723
- try XCTSkipIf ( true , " https://github.com/swiftlang/sourcekit-lsp/issues/1770 " )
724
- #endif
725
-
726
696
let testClient = try await TestSourceKitLSPClient ( )
727
697
let uri = DocumentURI ( for: . swift)
728
698
let positions = testClient. openDocument (
@@ -796,11 +766,6 @@ final class SemanticTokensTests: XCTestCase {
796
766
func testInsertTokens( ) async throws {
797
767
try await SkipUnless . sourcekitdHasSemanticTokensRequest ( )
798
768
799
- #if os(Windows)
800
- // FIXME: Run when https://github.com/swiftlang/sourcekit-lsp/issues/1770 is fixed
801
- try XCTSkipIf ( true , " https://github.com/swiftlang/sourcekit-lsp/issues/1770 " )
802
- #endif
803
-
804
769
let testClient = try await TestSourceKitLSPClient ( )
805
770
let uri = DocumentURI ( for: . swift)
806
771
let positions = testClient. openDocument (
@@ -932,11 +897,6 @@ final class SemanticTokensTests: XCTestCase {
932
897
func testArgumentLabels( ) async throws {
933
898
try await SkipUnless . sourcekitdHasSemanticTokensRequest ( )
934
899
935
- #if os(Windows)
936
- // FIXME: Run when https://github.com/swiftlang/sourcekit-lsp/issues/1770 is fixed
937
- try XCTSkipIf ( true , " https://github.com/swiftlang/sourcekit-lsp/issues/1770 " )
938
- #endif
939
-
940
900
try await assertSemanticTokens (
941
901
markedContents: """
942
902
1️⃣func 2️⃣foo(3️⃣arg: 4️⃣Int) {}
@@ -957,11 +917,6 @@ final class SemanticTokensTests: XCTestCase {
957
917
func testFunctionDeclarationWithFirstAndSecondName( ) async throws {
958
918
try await SkipUnless . sourcekitdHasSemanticTokensRequest ( )
959
919
960
- #if os(Windows)
961
- // FIXME: Run when https://github.com/swiftlang/sourcekit-lsp/issues/1770 is fixed
962
- try XCTSkipIf ( true , " https://github.com/swiftlang/sourcekit-lsp/issues/1770 " )
963
- #endif
964
-
965
920
try await assertSemanticTokens (
966
921
markedContents: """
967
922
1️⃣func 2️⃣foo(3️⃣arg 4️⃣internalName: 5️⃣Int) {}
0 commit comments