We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed53b77 commit 6f247cbCopy full SHA for 6f247cb
src/test/groovy/graphql/schema/DataFetcherFactoriesTest.groovy
@@ -12,7 +12,13 @@ class DataFetcherFactoriesTest extends Specification {
12
13
def "testing the GitHub Action on failing tests"() {
14
// TODO: I will remove this test before merging the PR. This is only to generate a test failure message.
15
- false
+ def fetcherFactory = DataFetcherFactories.useDataFetcher(pojoDF)
16
+
17
+ when:
18
+ def value = fetcherFactory.get(null).get(null)
19
20
+ then:
21
+ value != "goodbye"
22
}
23
24
def "delegation happens as expected"() {
0 commit comments