File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ import { init } from '../../src/client';
55
66const 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 ( {
Original file line number Diff line number Diff line change 11import { SDK_VERSION , getDefaultIntegrations , init as browserInit } from '@sentry/browser' ;
22
3- import { applySdkMetadata } from '@sentry/core' ;
43import { vueIntegration } from './integration' ;
54import 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}
You can’t perform that action at this time.
0 commit comments