Skip to content

Commit ae3ddef

Browse files
committed
test(auto-instrumentations-node): update test to filter out fastify
1 parent 9ec3c64 commit ae3ddef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

metapackages/auto-instrumentations-node/test/utils.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ describe('utils', () => {
3030
).filter(depName => {
3131
return (
3232
depName.startsWith('@opentelemetry/instrumentation-') &&
33-
depName !== '@opentelemetry/instrumentation-fs'
33+
depName !== '@opentelemetry/instrumentation-fs' &&
34+
depName !== '@opentelemetry/instrumentation-fastify'
3435
);
3536
});
3637

0 commit comments

Comments
 (0)