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 6f247cb commit d6faceeCopy full SHA for d6facee
src/test/groovy/graphql/schema/DataFetcherFactoriesTest.groovy
@@ -10,17 +10,6 @@ class DataFetcherFactoriesTest extends Specification {
10
def cfDF = new StaticDataFetcher(CompletableFuture.completedFuture("hello"))
11
def pojoDF = new StaticDataFetcher("goodbye")
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
- 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"() {
25
given:
26
0 commit comments