Skip to content

Commit e09921e

Browse files
committed
Skip browsertracing in test
1 parent 6536ce2 commit e09921e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/tracing/test/index.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ describe('index', () => {
1212
describe('Integrations', () => {
1313
it('is exported correctly', () => {
1414
Object.keys(Integrations).forEach(key => {
15+
// Skip BrowserTracing because it doesn't have a static id field.
16+
if (key !== 'BrowserTracing') {
17+
return;
18+
}
19+
1520
expect(Integrations[key as keyof typeof Integrations].id).toStrictEqual(expect.any(String));
1621
});
1722
});

0 commit comments

Comments
 (0)