Skip to content

Commit 34de791

Browse files
committed
Merge branch '3.0.x'
2 parents f6e208c + 58e7cae commit 34de791

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/graphql/GraphQlTestIntegrationTests.java

-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
package org.springframework.boot.test.autoconfigure.graphql;
1818

19-
import org.junit.jupiter.api.Disabled;
2019
import org.junit.jupiter.api.Test;
2120

2221
import org.springframework.beans.factory.annotation.Autowired;
@@ -28,7 +27,6 @@
2827
* @author Brian Clozel
2928
*/
3029
@GraphQlTest(BookController.class)
31-
@Disabled
3230
class GraphQlTestIntegrationTests {
3331

3432
@Autowired
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
type Query {
2+
bookById(id: ID): Book
3+
}
4+
5+
type Book {
6+
id: ID
7+
name: String
8+
pageCount: Int
9+
author: String
10+
}

0 commit comments

Comments
 (0)