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 54c1cac commit f6b757fCopy full SHA for f6b757f
dev-packages/node-integration-tests/suites/tracing/meta-tags/test.ts
@@ -17,7 +17,7 @@ describe('getTraceMetaTags', () => {
17
});
18
19
// @ts-expect-error - this is a string, types just don't work well
20
- const html = response?.response as string;
+ const html = response?.response as unknown as string;
21
22
expect(html).toMatch(/<meta name="sentry-trace" content="cd7ee7a6fe3ebe7ab9c3271559bc203c-[a-z0-9]{16}-1"\/>/);
23
expect(html).toContain('<meta name="baggage" content="sentry-environment=production"/>');
0 commit comments