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 5a79941 commit 3de0746Copy full SHA for 3de0746
packages/core/test/lib/carrier.test.ts
@@ -42,14 +42,13 @@ describe('getSentryCarrier', () => {
42
describe('multiple (older) SDKs', () => {
43
it("returns the version of the sentry carrier object of the SDK's version rather than the one set in .version", () => {
44
const sentryCarrier = getSentryCarrier({
45
+ // @ts-expect-error - this is just a test object
46
__SENTRY__: {
- version: '8.0.0' as const, // another SDK set this
47
+ version: '8.0.0', // another SDK set this
48
'8.0.0': {
- // @ts-expect-error - this is just a test object, not passing a full stack
49
stack: {},
50
},
51
[SDK_VERSION]: {
52
- // @ts-expect-error - this is just a test object, not passing a full ACS
53
acs: {},
54
55
hub: {},
0 commit comments