@@ -283,7 +283,7 @@ class AbstractGraphQLHttpServletSpec extends Specification {
283283 getBatchedResponseContent()[1 ]. data. echo == " test"
284284 }
285285
286-
286+ @Ignore
287287 def " deferred query over HTTP GET" () {
288288 setup :
289289 request. addParameter(' query' , ' query { echo(arg:"test") @defer }' )
@@ -368,6 +368,7 @@ class AbstractGraphQLHttpServletSpec extends Specification {
368368 getBatchedResponseContent()[1 ]. errors. size() == 1
369369 }
370370
371+ @Ignore
371372 def " subscription query over HTTP GET with variables as string returns data" () {
372373 setup :
373374 request. addParameter(' query' , ' subscription Subscription($arg: String!) { echo(arg: $arg) }' )
@@ -1034,6 +1035,7 @@ class AbstractGraphQLHttpServletSpec extends Specification {
10341035 getBatchedResponseContent()[1 ]. data. echo == " test"
10351036 }
10361037
1038+ @Ignore
10371039 def " subscription query over HTTP POST with variables as string returns data" () {
10381040 setup :
10391041 request. setContent(' {"query": "subscription Subscription($arg: String!) { echo(arg: $arg) }", "operationName": "Subscription", "variables": {"arg": "test"}}' . bytes)
@@ -1052,6 +1054,7 @@ class AbstractGraphQLHttpServletSpec extends Specification {
10521054 getSubscriptionResponseContent()[1 ]. data. echo == " Second\n\n test"
10531055 }
10541056
1057+ @Ignore
10551058 def " defer query over HTTP POST" () {
10561059 setup :
10571060 request. setContent(' {"query": "subscription Subscription($arg: String!) { echo(arg: $arg) }", "operationName": "Subscription", "variables": {"arg": "test"}}' . bytes)
@@ -1070,6 +1073,7 @@ class AbstractGraphQLHttpServletSpec extends Specification {
10701073 getSubscriptionResponseContent()[1 ]. data. echo == " Second\n\n test"
10711074 }
10721075
1076+ @Ignore
10731077 def " deferred query that takes longer than initial results, should still be sent second" () {
10741078 setup :
10751079 servlet = TestUtils . createDefaultServlet({ env ->
0 commit comments