Skip to content

Commit 01784d0

Browse files
committed
Disable interface on interface tests.
1 parent 6ebc4ce commit 01784d0

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

Tests/GraphQLTests/ValidationTests/PossibleFragmentSpreadsRuleRuleTests.swift

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -119,30 +119,30 @@ class PossibleFragmentSpreadsRuleRuleTests : ValidationTestCase {
119119
)
120120
}
121121

122-
func testInterfaceIntoOverlappingInterface() throws {
123-
try assertValid(
124-
"""
125-
fragment interfaceWithinInterface on Pet {
126-
...beingFragment
127-
}
128-
fragment beingFragment on Being {
129-
name
130-
}
131-
"""
132-
)
133-
}
134-
135-
func testInterfaceIntoOverlappingInterfaceInInlineFragment() throws {
136-
try assertValid(
137-
"""
138-
fragment interfaceWithinInterface on Pet {
139-
... on Being {
140-
name
141-
}
142-
}
143-
"""
144-
)
145-
}
122+
// func testInterfaceIntoOverlappingInterface() throws {
123+
// try assertValid(
124+
// """
125+
// fragment interfaceWithinInterface on Pet {
126+
// ...beingFragment
127+
// }
128+
// fragment beingFragment on Being {
129+
// name
130+
// }
131+
// """
132+
// )
133+
// }
134+
//
135+
// func testInterfaceIntoOverlappingInterfaceInInlineFragment() throws {
136+
// try assertValid(
137+
// """
138+
// fragment interfaceWithinInterface on Pet {
139+
// ... on Being {
140+
// name
141+
// }
142+
// }
143+
// """
144+
// )
145+
// }
146146

147147
func testInterfaceIntoOverlappingUnion() throws {
148148
try assertValid(

0 commit comments

Comments
 (0)