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 62f1e84 commit 76cdbc1Copy full SHA for 76cdbc1
src/test/groovy/graphql/ProfilerTest.groovy
@@ -268,6 +268,9 @@ class ProfilerTest extends Specification {
268
def schema = TestUtil.schema(sdl, [
269
Query: [
270
foo: { DataFetchingEnvironment dfe ->
271
+ // blocking the engine for 1ms
272
+ // so that engineTotalRunningTime time is more than 1ms
273
+ Thread.sleep(1)
274
return CompletableFuture.supplyAsync {
275
Thread.sleep(500)
276
"1"
0 commit comments