Skip to content

Commit cdb3108

Browse files
committed
Keep aws-sdk integration tests on the OTel path until channel services land
1 parent 256c3bd commit cdb3108

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

  • dev-packages/node-integration-tests/suites/aws-serverless

dev-packages/node-integration-tests/suites/aws-serverless/aws-integration-streamed/test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,10 @@ describe('awsIntegration (streamed)', () => {
221221
await createTestRunner().ignore('event').expect({ span: assertAwsServiceSpans }).start().completed();
222222
});
223223
},
224-
{ additionalDependencies },
224+
// The orchestrion aws-sdk channel integration has no service extensions yet (empty registry),
225+
// so it can't emit the service-specific attributes asserted here. Stay on the OTel path until
226+
// the service extensions land in a follow-up.
227+
{ additionalDependencies, injectOrchestrion: false },
225228
);
226229
});
227230
});

dev-packages/node-integration-tests/suites/aws-serverless/aws-integration/test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,10 @@ describe('awsIntegration', () => {
216216
await createTestRunner().ignore('event').expect({ transaction: assertAwsServiceSpans }).start().completed();
217217
});
218218
},
219-
{ additionalDependencies },
219+
// The orchestrion aws-sdk channel integration has no service extensions yet (empty registry),
220+
// so it can't emit the service-specific attributes asserted here. Stay on the OTel path until
221+
// the service extensions land in a follow-up.
222+
{ additionalDependencies, injectOrchestrion: false },
220223
);
221224
});
222225
});

0 commit comments

Comments
 (0)