We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6536ce2 commit e09921eCopy full SHA for e09921e
packages/tracing/test/index.test.ts
@@ -12,6 +12,11 @@ describe('index', () => {
12
describe('Integrations', () => {
13
it('is exported correctly', () => {
14
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
+
20
expect(Integrations[key as keyof typeof Integrations].id).toStrictEqual(expect.any(String));
21
});
22
0 commit comments