diff --git a/plugins/node/opentelemetry-instrumentation-graphql/README.md b/plugins/node/opentelemetry-instrumentation-graphql/README.md index c43158de73b..e1ab7553ec1 100644 --- a/plugins/node/opentelemetry-instrumentation-graphql/README.md +++ b/plugins/node/opentelemetry-instrumentation-graphql/README.md @@ -1,5 +1,7 @@ # OpenTelemetry Instrumentation GraphQL +:bangbang: You could be a component owner for this package, and help maintain the quality its users deserve! Check out [open issues](https://github.com/open-telemetry/opentelemetry-js-contrib/labels/pkg%3Ainstrumentation-graphql) on how to help. + [![NPM Published Version][npm-img]][npm-url] [![Apache License][license-image]][license-image] diff --git a/plugins/node/opentelemetry-instrumentation-graphql/test/graphql.test.ts b/plugins/node/opentelemetry-instrumentation-graphql/test/graphql.test.ts index 2829792f146..5d54744f2ad 100644 --- a/plugins/node/opentelemetry-instrumentation-graphql/test/graphql.test.ts +++ b/plugins/node/opentelemetry-instrumentation-graphql/test/graphql.test.ts @@ -208,7 +208,7 @@ describe('graphql', () => { ); }); - it('should execute with correct timing', async () => { + it.skip('should execute with correct timing', async () => { const PARSE = 0; const VALIDATE = 1; const RESOLVE = 2; @@ -222,6 +222,7 @@ describe('graphql', () => { }); assert.ok(times[PARSE].start <= times[PARSE].end); + // This next line is flaky. Parse sometimes ends after Validate starts. assert.ok(times[PARSE].end <= times[VALIDATE].start); assert.ok(times[VALIDATE].start <= times[VALIDATE].end); assert.ok(times[VALIDATE].end <= times[EXECUTE].start);