Skip to content

Commit

Permalink
test(auto-instrumentations-node): update test to filter out fastify
Browse files Browse the repository at this point in the history
  • Loading branch information
pichlermarc committed Jan 17, 2025
1 parent 9ec3c64 commit ae3ddef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion metapackages/auto-instrumentations-node/test/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ describe('utils', () => {
).filter(depName => {
return (
depName.startsWith('@opentelemetry/instrumentation-') &&
depName !== '@opentelemetry/instrumentation-fs'
depName !== '@opentelemetry/instrumentation-fs' &&
depName !== '@opentelemetry/instrumentation-fastify'
);
});

Expand Down

0 comments on commit ae3ddef

Please sign in to comment.