Skip to content

Commit dc8a406

Browse files
committed
.
1 parent b92b8ef commit dc8a406

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

packages/nuxt/test/client/sdk.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import { init } from '../../src/client';
55

66
const vueInit = vi.spyOn(SentryVue, 'init');
77

8-
describe('Nuxt CLient SDK', () => {
8+
describe('Nuxt Client SDK', () => {
99
describe('init', () => {
1010
beforeEach(() => {
1111
vi.clearAllMocks();
1212
});
1313

14-
it('adds Nuxt metadata to the SDK options', () => {
14+
it('Adds Nuxt metadata to the SDK options', () => {
1515
expect(vueInit).not.toHaveBeenCalled();
1616

1717
init({

packages/vue/src/sdk.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { SDK_VERSION, getDefaultIntegrations, init as browserInit } from '@sentry/browser';
22

3-
import { applySdkMetadata } from '@sentry/core';
43
import { vueIntegration } from './integration';
54
import type { Options, TracingOptions } from './types';
65

@@ -27,7 +26,5 @@ export function init(
2726
...config,
2827
};
2928

30-
applySdkMetadata(config, 'nuxt', ['nuxt', 'vue']);
31-
3229
browserInit(options);
3330
}

0 commit comments

Comments
 (0)