@@ -20,6 +20,7 @@ describe('getPluginOptions', () => {
2020 SENTRY_ORG : 'default-org' ,
2121 SENTRY_PROJECT : 'default-project' ,
2222 SENTRY_AUTH_TOKEN : 'default-token' ,
23+ SENTRY_URL : 'https://santry.io' ,
2324 } ;
2425
2526 process . env = { ...defaultEnv } ;
@@ -31,6 +32,7 @@ describe('getPluginOptions', () => {
3132 org : 'default-org' ,
3233 project : 'default-project' ,
3334 authToken : 'default-token' ,
35+ url : 'https://santry.io' ,
3436 telemetry : true ,
3537 sourcemaps : expect . objectContaining ( {
3638 rewriteSources : expect . any ( Function ) ,
@@ -114,6 +116,7 @@ describe('getPluginOptions', () => {
114116 assets : [ 'custom-assets/**/*' ] ,
115117 filesToDeleteAfterUpload : [ 'delete-this.js' ] ,
116118 } ,
119+ url : 'https://santry.io' ,
117120 } ,
118121 debug : true ,
119122 unstable_sentryBundlerPluginOptions : {
@@ -124,6 +127,7 @@ describe('getPluginOptions', () => {
124127 release : {
125128 name : 'test-release' ,
126129 } ,
130+ url : 'https://suntry.io' ,
127131 } ,
128132 } ;
129133 const options = getPluginOptions ( customOptions , false ) ;
@@ -140,6 +144,7 @@ describe('getPluginOptions', () => {
140144 release : expect . objectContaining ( {
141145 name : 'test-release' ,
142146 } ) ,
147+ url : 'https://suntry.io' ,
143148 } ) ,
144149 ) ;
145150 } ) ;
0 commit comments